unit1395: Fixed null pointer dereference on torture test

This commit is contained in:
Dan Fandrich 2014-04-28 17:11:37 +02:00
parent b8a220d255
commit 970ce28c12
1 changed files with 1 additions and 4 deletions

View File

@ -66,6 +66,7 @@ UNITTEST_START
for(i=0; i < sizeof(pairs)/sizeof(pairs[0]); i++) {
char *out = Curl_dedotdotify((char *)pairs[i].input);
abort_unless(out != NULL, "returned NULL!");
if(strcmp(out, pairs[i].output)) {
fprintf(stderr, "Test %d: '%s' gave '%s' instead of '%s'\n",
@ -81,7 +82,3 @@ UNITTEST_START
return fails;
UNITTEST_STOP