summaryrefslogtreecommitdiff
path: root/source3/rpcclient/rpcclient.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-03-12 17:44:00 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:15:20 -0500
commit8790a2e25789bab514f8372d1b048e11fb0bae8b (patch)
tree554304d82ec88d4057704ab97a06ef8d2d6588a1 /source3/rpcclient/rpcclient.c
parent15f4c6372ce5aaefa1ab338cd8d0a3aee77b8efc (diff)
downloadsamba-8790a2e25789bab514f8372d1b048e11fb0bae8b.tar.gz
samba-8790a2e25789bab514f8372d1b048e11fb0bae8b.tar.bz2
samba-8790a2e25789bab514f8372d1b048e11fb0bae8b.zip
r14245: We've dereferenced argv before, no point in checking.
Fix Coverity bug # 144. Volker (This used to be commit d47ee82f068f1dfbae4a1c81e6bd765d5d36f09f)
Diffstat (limited to 'source3/rpcclient/rpcclient.c')
-rw-r--r--source3/rpcclient/rpcclient.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c
index 3f493ce2c5..8d70c6030a 100644
--- a/source3/rpcclient/rpcclient.c
+++ b/source3/rpcclient/rpcclient.c
@@ -663,13 +663,11 @@ out_free:
}
*/
- if (argv) {
- /* NOTE: popt allocates the whole argv, including the
- * strings, as a single block. So a single free is
- * enough to release it -- we don't free the
- * individual strings. rtfm. */
- free(argv);
- }
+ /* NOTE: popt allocates the whole argv, including the
+ * strings, as a single block. So a single free is
+ * enough to release it -- we don't free the
+ * individual strings. rtfm. */
+ free(argv);
return result;
}