diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2002-12-10 15:36:26 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2002-12-10 15:36:26 +0000 |
| commit | ecc9c539d263d1ae4ee05b10e88d65567a8a7cab (patch) | |
| tree | bd58e9c7b44dd832d6b6aa998774e17006e8be8a /main/rfc1867.c | |
| parent | f481a209b74c5bc58b75d7734e9ec489c81b1622 (diff) | |
| download | php-git-ecc9c539d263d1ae4ee05b10e88d65567a8a7cab.tar.gz | |
Removed a pointless check. Thanks Stefan.
Diffstat (limited to 'main/rfc1867.c')
| -rw-r--r-- | main/rfc1867.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c index 15693daed2..2aa01aeca1 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -840,9 +840,7 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler) } } if (skip_upload) { - if (param) { - efree(param); - } + efree(param); if (filename) { efree(filename); } |
