diff options
-rw-r--r-- | ev.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -574,6 +574,7 @@ ev_realloc_emul (void *ptr, long size) * implement realloc (x, 0) (as required by both ansi c-98 and * the single unix specification, so work around them here. */ + if (size) return realloc (ptr, size); |