diff options
author | root <root> | 2007-12-15 23:14:38 +0000 |
---|---|---|
committer | root <root> | 2007-12-15 23:14:38 +0000 |
commit | 31e9efe54cb349b93fa56445eec2d398320b5e92 (patch) | |
tree | ee7180518f90715677a41bfda4e7e9b26946c3da | |
parent | ef0fb5651bf6799d3100082b97a677d329beb4b8 (diff) |
fix memleak
-rw-r--r-- | ev.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1040,6 +1040,8 @@ loop_destroy (EV_P) #endif } + ev_free (anfds); anfdmax = 0; + /* have to use the microsoft-never-gets-it-right macro */ array_free (fdchange, EMPTY); array_free (timer, EMPTY); @@ -1048,6 +1050,7 @@ loop_destroy (EV_P) #endif array_free (prepare, EMPTY); array_free (check, EMPTY); + array_free (fork, EMPTY); backend = 0; } |