public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/29313] New: MIN/MAX macros can cause double evaluation of arguments
@ 2022-07-01 11:13 gkoumplias at gmail dot com
  2022-07-01 12:21 ` [Bug libc/29313] " schwab@linux-m68k.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: gkoumplias at gmail dot com @ 2022-07-01 11:13 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29313

            Bug ID: 29313
           Summary: MIN/MAX macros can cause double evaluation of
                    arguments
           Product: glibc
           Version: 2.36
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libc
          Assignee: unassigned at sourceware dot org
          Reporter: gkoumplias at gmail dot com
                CC: drepper.fsp at gmail dot com
  Target Milestone: ---

* MIN, MAX macros as defined in misc/sys/param.h
https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=misc/sys/param.h;hb=HEAD
can cause the double evaluation of one of the passed in arguments.
Currently MAX is defined as:
#define MAX(a,b) (((a)>(b))?(a):(b))
This will evaluate the maximum argument twice.

* A test case to reproduce this would go like this:
int a = 1000;
int b = 10;
MAX(a++, b++) ;
// This will fail as a will be 1002 due to double evaluation by the MAX macro
EXPECT_EQ(a, 1001)

* solution
#define max(a,b) \
   ({ __typeof__ (a) _a = (a); \
       __typeof__ (b) _b = (b); \
     _a > _b ? _a : _b; })

* A discussion (and a solution) for the matter can be found here
https://stackoverflow.com/questions/3437404/min-and-max-in-c


Thanks

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-07-01 17:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-01 11:13 [Bug libc/29313] New: MIN/MAX macros can cause double evaluation of arguments gkoumplias at gmail dot com
2022-07-01 12:21 ` [Bug libc/29313] " schwab@linux-m68k.org
2022-07-01 12:32 ` adhemerval.zanella at linaro dot org
2022-07-01 17:00 ` goldstein.w.n at gmail dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).