Commit 024c059f authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

Force tor_malloc(0) to always be sane


svn:r1558
parent 40f7324e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -69,6 +69,10 @@
void *tor_malloc(size_t size) {
  void *result;

  /* Some libcs don't do the right thing on size==0. Override them. */
  if (size==0) {
    size=1;
  }
  result = malloc(size);

  if(!result) {