• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
malloc(0) returns a pointer, not NULL
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

malloc(0) returns a pointer, not NULL


  • Subject: malloc(0) returns a pointer, not NULL
  • From: Michael David Crawford <email@hidden>
  • Date: Tue, 05 May 2015 14:19:52 -0700

This came as news to me.

The C spec says this is implementation-definited; malloc(0 may return
either NULL or it may return a pointer that can subsequently be passed
to free().

In the case of the bug I'm looking at just now, it's an error in my
code, so I now have:

assert( 0 != bytes );
ptr = malloc( bytes );

Just thought you'd like to know,

Mike
Michael David Crawford, Consulting Software Engineer
email@hidden
http://www.warplife.com/mdc/

   Available for Software Development in the Portland, Oregon Metropolitan
Area.
_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


  • Follow-Ups:
    • Re: malloc(0) returns a pointer, not NULL
      • From: Clark Smith Cox III <email@hidden>
    • Re: malloc(0) returns a pointer, not NULL
      • From: Jens Alfke <email@hidden>
  • Prev by Date: Re: Proper way to perform a task in the future on iOS 7 and 8
  • Next by Date: Re: Issues with implementing WYWIWYG font menu
  • Previous by thread: Re: Help: NSScrollView is resizing its documentView down to (0, 0)
  • Next by thread: Re: malloc(0) returns a pointer, not NULL
  • Index(es):
    • Date
    • Thread