diff options
author | Jeremy Allison <jra@samba.org> | 2007-12-07 14:37:00 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-12-07 14:37:00 -0800 |
commit | 097e5b4fc494f53fcce074a3bf27d0237e0a566a (patch) | |
tree | d043c3e090dbce9e660814f353a5113c51a6070f /source3 | |
parent | 8267331be653e2f68d2b64a465b1c15bb9ddddb0 (diff) | |
download | samba-097e5b4fc494f53fcce074a3bf27d0237e0a566a.tar.gz samba-097e5b4fc494f53fcce074a3bf27d0237e0a566a.tar.bz2 samba-097e5b4fc494f53fcce074a3bf27d0237e0a566a.zip |
More null deref fixes.
Jeremy
(This used to be commit 78c98796d9328723b7c46012adf5393134a4fea3)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index a850334efa..18758c0216 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -4764,7 +4764,7 @@ static int do_message_op(void) return do_tar_op(base_directory); } - if (*query_host) { + if (query_host) { char *qhost = query_host; char *slash; |