From f5646a8ab06c930153a35b27fd96555fd6fbe5e7 Mon Sep 17 00:00:00 2001 From: Debian Med Packaging Team Date: Sat, 29 Jul 2017 09:38:27 +0100 Subject: [PATCH] fix-test_vcf_query Last-Update 2017-07-21 Gbp-Pq: Name fix-test_vcf_query.patch --- vcfnorm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcfnorm.c b/vcfnorm.c index 3a1706b..8038be1 100644 --- a/vcfnorm.c +++ b/vcfnorm.c @@ -94,7 +94,7 @@ static inline int replace_iupac_codes(char *seq, int nseq) } static inline int has_non_acgtn(char *seq, int nseq) { - char *end = nseq ? seq + nseq : seq + UINT32_MAX; // arbitrary large number + char *end = nseq ? seq + nseq : seq + (UINT32_MAX >> 2); // arbitrary large number while ( *seq && seq