From: Andrew Bartlett Date: Thu, 17 Apr 2008 09:22:23 +0000 (+0200) Subject: Skip strcmp() on 2 NULL pointers. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60f7bdac64e32ea39099ababacca6f8a2b780ecb;p=thirdparty%2Fsamba.git Skip strcmp() on 2 NULL pointers. Andrew Bartlett (cherry picked from commit 7b9a647ebbbe9ec9e1b82b42e3a8916396f91273) --- 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; \