public inbox for linux-man@vger.kernel.org
 help / color / mirror / Atom feed
From: Mike Frysinger <vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
To: "Chris ク Heath" <chris-FSXMH2gLahXJKwlM9GxbOw@public.gmane.org>
Cc: "Michael Kerrisk"
	<mtk.manpages-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>,
	"Lasse Kärkkäinen"
	<tronic-ze05kZMmeybHOG6cAo2yLw@public.gmane.org>,
	linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: Error in man page: realloc(ptr, 0) is not equivalent to free(ptr)
Date: Sat, 23 Feb 2008 03:41:13 -0500	[thread overview]
Message-ID: <200802230341.14864.vapier@gentoo.org> (raw)
In-Reply-To: <1203754246.3021.104.camel-DBi1IKlRe8YXiSwHZUBl+UgmxNRb6L7S@public.gmane.org>

[-- Attachment #1: Type: text/plain, Size: 3784 bytes --]

On Saturday 23 February 2008, Chris ク Heath wrote:
> On Fri, 2008-02-22 at 11:15 +0100, Michael Kerrisk wrote:
> > On Thu, Feb 21, 2008 at 7:59 AM, Mike Frysinger <vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org> wrote:
> > > On Thursday 21 February 2008, Lasse Kärkkäinen wrote:
> > >  > The man page says that realloc(ptr, 0) is equivalent to free, even
> > >  > though it isn't. The text on the man page says
> > >  >
> > >  > ---
> > >  > realloc()  changes the size of the memory block pointed to by ptr to
> > >  > size bytes.  The contents will be unchanged to the minimum of the
> > >  > old and new sizes;  newly  allocated memory  will  be 
> > >  > uninitialized.   If ptr  is  NULL,  the call is equivalent to
> > >  > malloc(size); if size is equal to zero, the call is equivalent to
> > >  > free(ptr).  Unless ptr is NULL, it must have been returned by an
> > >  > earlier call to malloc(), calloc() or realloc().  If the area
> > >  > pointed to was moved, a free(ptr) is done. [...]
> > >  > realloc()  returns a pointer to the newly allocated memory, which is
> > >  > suitably aligned for any kind of variable and may be different from
> > >  > ptr, or NULL if the request fails.  If  size  was equal to 0, either
> > >  > NULL or a pointer suitable to be passed to free() is returned.  If
> > >  > realloc() fails the original block is left untouched; it is not
> > >  > freed or moved.
> > >
> > >  i would just word it to say that when realloc() is given a size of 0,
> > > it is implementation defined as to the behavior, but it tends to match
> > > the behavior of malloc(0) (which too is implementation defined).  POSIX
> > > and C99 allow both cases to return either a NULL pointer or a "unique"
> > > pointer.  glibc will return a unique pointer (which cannot actually be
> > > used to store anything), but uClibc may return NULL.
> > >  -mike
> >
> > Lasse, thanks for raising this; Mike, thanks for your input.
> >
> > For man-pages-2.79, I propose to amend the description of realloc() to
> > be:
> >
> >        realloc() changes the size of the memory block pointed to
> >        by  ptr to size bytes.  The contents will be unchanged to
> >        the minimum of the old and  new  sizes;  newly  allocated
> >        memory  will  be uninitialized.  If ptr is NULL, then the
> >        call is equivalent to malloc(size); if size is  equal  to
> >        zero, and ptr is not NULL, then the call is equivalent to
> >        free(ptr).   Unless  ptr  is  NULL,  it  must  have  been
> >        returned  by  an  earlier  call  to malloc(), calloc() or
> >        realloc().  If the area pointed to was moved, a free(ptr)
> >        is done.
>
> Hmmm.  The phrase
>
>                                            if size is  equal  to
>        zero, and ptr is not NULL, then the call is equivalent to
>        free(ptr).
>
> seems to contradict the following sentence, found under RETURN VALUES:
>
>                               If size was equal to 0, either NULL
>         or a pointer suitable to be passed to free() is returned.
>
> If realloc(ptr, 0) can return a non-NULL pointer, then it isn't
> equivalent to free(ptr).
>
> So which one is correct?  My tests with glibc 2.6 indicate that
> realloc(ptr, 0) always returns NULL, so it IS equivalent to free(ptr).
> However, I don't know if that is guaranteed to always be the case.

this isnt a question that can be answered here.  you would have to ask for 
clarification on the open group mailing list as they are the ones who 
maintain the POSIX documentation.

for the purposes of the man page, i think this can be ignored.  or replace the 
sentence "the call is equivalent to free(ptr)" with "the ptr is freed".
-mike

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 827 bytes --]

  parent reply	other threads:[~2008-02-23  8:41 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-21  6:26 Error in man page: realloc(ptr, 0) is not equivalent to free(ptr) Lasse Kärkkäinen
     [not found] ` <47BD19AF.4000101-ze05kZMmeybHOG6cAo2yLw@public.gmane.org>
2008-02-21  6:59   ` Mike Frysinger
     [not found]     ` <200802210159.03465.vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
2008-02-22 10:15       ` Michael Kerrisk
     [not found]         ` <cfd18e0f0802220215l6e61ab90h4a2d9b2e3e2a194d-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-02-23  6:38           ` Mike Frysinger
     [not found]             ` <200802230138.11461.vapier-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
2008-02-26 15:12               ` Michael Kerrisk
2008-02-23  8:10           ` Chris "ク" Heath
     [not found]             ` <1203754246.3021.104.camel-DBi1IKlRe8YXiSwHZUBl+UgmxNRb6L7S@public.gmane.org>
2008-02-23  8:41               ` Mike Frysinger [this message]
2008-02-26 15:12               ` Michael Kerrisk
     [not found]                 ` <47C42C68.405-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2008-03-02 13:01                   ` Michael Kerrisk
     [not found]                     ` <cfd18e0f0803020501y4e803b6dk5479db1f1f36b37-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-03-02 23:53                       ` Chris "ク" Heath

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200802230341.14864.vapier@gentoo.org \
    --to=vapier-abrp7r+bbdudnm+yrofe0a@public.gmane.org \
    --cc=chris-FSXMH2gLahXJKwlM9GxbOw@public.gmane.org \
    --cc=linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=mtk.manpages-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org \
    --cc=tronic-ze05kZMmeybHOG6cAo2yLw@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox