emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#8828: closed (unsigned casts in PTR_BYTE_POS and B


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#8828: closed (unsigned casts in PTR_BYTE_POS and BUF_PTR_BYTE_POS)
Date: Sat, 31 Dec 2011 08:41:01 +0000

Your message dated Sat, 31 Dec 2011 00:37:15 -0800
with message-id <address@hidden>
and subject line Re: unsigned casts in PTR_BYTE_POS and BUF_PTR_BYTE_POS
has caused the debbugs.gnu.org bug report #8828,
regarding unsigned casts in PTR_BYTE_POS and BUF_PTR_BYTE_POS
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
8828: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8828
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: unsigned casts in PTR_BYTE_POS and BUF_PTR_BYTE_POS Date: Wed, 08 Jun 2011 23:54:36 -0700 User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110516 Thunderbird/3.1.10
Currently, src/buffer.h's macros PTR_BYTE_POS and BUF_PTR_BYTE_POS
both cast subexpressions to 'unsigned'.  This can't
be right on a 64-bit host, since the subexpressions might
exceed 2**32 if the buffer is large, and their values shouldn't
be truncated to 32 bits.

I can't see why the cast to 'unsigned' is there at all,
even on a 32-bit host; unless I'm missing something
the values being compared are always nonnegative.
So I'd like to install the following
patch into the trunk, after some testing.

=== modified file 'src/buffer.h'
--- src/buffer.h        2011-06-06 19:43:39 +0000
+++ src/buffer.h        2011-06-09 04:04:41 +0000
@@ -337,7 +337,7 @@
 
 #define PTR_BYTE_POS(ptr) \
 ((ptr) - (current_buffer)->text->beg                                       \
- - (ptr - (current_buffer)->text->beg <= (unsigned) (GPT_BYTE - BEG_BYTE) ? 0 
: GAP_SIZE) \
+ - (ptr - (current_buffer)->text->beg <= GPT_BYTE - BEG_BYTE ? 0 : GAP_SIZE) \
  + BEG_BYTE)
 
 /* Return character at byte position POS.  */
@@ -396,7 +396,7 @@
 
 #define BUF_PTR_BYTE_POS(buf, ptr)                             \
 ((ptr) - (buf)->text->beg                                      \
- - (ptr - (buf)->text->beg <= (unsigned) (BUF_GPT_BYTE ((buf)) - BEG_BYTE)\
+ - (ptr - (buf)->text->beg <= BUF_GPT_BYTE ((buf)) - BEG_BYTE  \
     ? 0 : BUF_GAP_SIZE ((buf)))                                        \
  + BEG_BYTE)
 



--- End Message ---
--- Begin Message --- Subject: Re: unsigned casts in PTR_BYTE_POS and BUF_PTR_BYTE_POS Date: Sat, 31 Dec 2011 00:37:15 -0800 User-agent: Mozilla/5.0 (X11; Linux i686; rv:8.0) Gecko/20111124 Thunderbird/8.0
This bug was fixed in bzr 104599 in the trunk, dated 2011-06-15.
I forgot to close it then but am closing it now.


--- End Message ---

reply via email to

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