bug-teseq
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Bug-teseq] out-of-range access in print_gxdm_info


From: Bruno Haible
Subject: Re: [Bug-teseq] out-of-range access in print_gxdm_info
Date: Thu, 7 Aug 2008 00:45:50 +0200
User-agent: KMail/1.5.4

Micah Cowan wrote:
> The following patch seems to have fixed this problem;
> 
> diff -r f4f09eff119f -r 245d8eac5c73 src/teseq.c
> --- a/src/teseq.c       Sun Aug 03 18:41:46 2008 -0700
> +++ b/src/teseq.c       Wed Aug 06 11:18:46 2008 -0700
> @@ -546,7 +546,7 @@
>        set = 6;
>        designate = i1 - 0x2c;
>      }
> -  else if (i1 != 0x27 && i1 != 0x2c)
> +  else if (i1 >= 0x28 && i1 != 0x2c)
>      {
>        set = 4;
>        designate = i1 - 0x28;

Yes, this will fix it.

Bruno





reply via email to

[Prev in Thread] Current Thread [Next in Thread]