diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2015-04-19 11:15:12 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2015-04-19 11:15:12 +0200 |
| commit | cc8b67ee4677f9f1d4ab341157725cb5d20cb1d7 (patch) | |
| tree | 9cac3c7b44e6c29e10864bdffaa0d05fd8638e81 /fcgiwrap.c | |
| parent | c0ee2df12159e1c19c2829c5a0762d83c3aa10c9 (diff) | |
Don't free socket_url at exit
While this generally is the right thing to do, we don't clean up
the rest of the memory (we're exiting in a moment, anyway)
and conditionally freeing a single variable seems wrong.
Diffstat (limited to 'fcgiwrap.c')
| -rw-r--r-- | fcgiwrap.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -862,16 +862,15 @@ int main(int argc, char **argv) prefork(nchildren); fcgiwrap_main(); - if(fd) { + if (fd) { const char *p = socket_url; close(fd); - if(socket_url) { + if (socket_url) { if (!strncmp(p, "unix:", sizeof("unix:") - 1)) { p += sizeof("unix:") - 1; unlink(p); } - free(socket_url); } } return 0; |
