| commit | 5cecceccb2658cc4568a86f4f52be40e924f9fb9 | [log] [tgz] |
|---|---|---|
| author | Michael Stefaniuc <mstefani@redhat.de> | Mon Oct 09 23:34:36 2006 +0200 |
| committer | Alexandre Julliard <julliard@winehq.org> | Tue Oct 10 12:56:16 2006 +0200 |
| tree | 2b3a2a4d9f10738c25179a7d81f46811e624c9f0 | |
| parent | 2d48706d7476ce434143c1ab2a26ba616144522d [diff] [blame] |
server: Remove redundant NULL check before free() (found by Smatch).
diff --git a/server/request.c b/server/request.c index b0cebd5..07cc5fb 100644 --- a/server/request.c +++ b/server/request.c
@@ -251,11 +251,8 @@ return; } } - if (current->reply_data) - { - free( current->reply_data ); - current->reply_data = NULL; - } + free( current->reply_data ); + current->reply_data = NULL; return; error: