diff options
author | Jeremy Allison <jra@samba.org> | 2001-06-15 19:48:03 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-06-15 19:48:03 +0000 |
commit | cf30d3bc91d7e62aef862cec7b7bebfcf04c8213 (patch) | |
tree | 442f422d71a0d7fc2c1c0101e47913023cc2f9ed | |
parent | 9b70bdfc38f20fb34c3b192819552d1e48cefed7 (diff) | |
download | samba-cf30d3bc91d7e62aef862cec7b7bebfcf04c8213.tar.gz samba-cf30d3bc91d7e62aef862cec7b7bebfcf04c8213.tar.bz2 samba-cf30d3bc91d7e62aef862cec7b7bebfcf04c8213.zip |
Fixed typo spotted by "Jim McDonough" <jmcd@us.ibm.com>....
Jeremy.
(This used to be commit a600c96e596375bf27c15026c032944a066e7290)
-rw-r--r-- | source3/rpc_parse/parse_samr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_samr.c b/source3/rpc_parse/parse_samr.c index 3695a83c67..e32a087a65 100644 --- a/source3/rpc_parse/parse_samr.c +++ b/source3/rpc_parse/parse_samr.c @@ -4354,7 +4354,7 @@ BOOL samr_io_q_lookup_names(char *desc, SAMR_Q_LOOKUP_NAMES * q_u, q_u->num_names2); q_u->uni_name = (UNISTR2 *)prs_alloc_mem(ps, sizeof(UNISTR2) * q_u->num_names2); - if (!q_u->hdr_name || q_u->uni_name) + if (!q_u->hdr_name || !q_u->uni_name) return False; } |