summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-04-17 11:22:23 +0200
committerStefan Metzmacher <metze@samba.org>2008-09-14 19:17:19 +0200
commit60f7bdac64e32ea39099ababacca6f8a2b780ecb (patch)
tree9da4dcd9814088122dba13e118e1c6e8f1aad5ab
parent523cc93f89d00ed5a49fd033988e7221bd2ed902 (diff)
downloadsamba-60f7bdac64e32ea39099ababacca6f8a2b780ecb.tar.gz
Skip strcmp() on 2 NULL pointers.
Andrew Bartlett (cherry picked from commit 7b9a647ebbbe9ec9e1b82b42e3a8916396f91273)
-rw-r--r--source/lib/talloc/testsuite.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/lib/talloc/testsuite.c b/source/lib/talloc/testsuite.c
index fedbda95aac..3f06eee5667 100644
--- a/source/lib/talloc/testsuite.c
+++ b/source/lib/talloc/testsuite.c
@@ -48,7 +48,8 @@ static double timeval_elapsed(struct timeval *tv)
}
#define torture_assert_str_equal(test, arg1, arg2, desc) \
- if (strcmp(arg1, arg2)) { \
+ if (arg1 == NULL && arg2 == NULL) { \
+ } else if (strcmp(arg1, arg2)) { \
printf("failure: %s [\n%s: Expected %s, got %s: %s\n]\n", \
test, __location__, arg1, arg2, desc); \
return false; \