]> git.lizzy.rs Git - rust.git/commitdiff
auto merge of #11635 : thestinger/rust/zero-size-alloc, r=alexcrichton
authorbors <bors@rust-lang.org>
Sun, 19 Jan 2014 12:31:53 +0000 (04:31 -0800)
committerbors <bors@rust-lang.org>
Sun, 19 Jan 2014 12:31:53 +0000 (04:31 -0800)
The `malloc` family of functions may return a null pointer for a
zero-size allocation, which should not be interpreted as an
out-of-memory error.

If the implementation does not return a null pointer, then handling
this will result in memory savings for zero-size types.

This also switches some code to `malloc_raw` in order to maintain a
centralized point for handling out-of-memory in `rt::global_heap`.

Closes #11634


Trivial merge