mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
r6175: Fix crash bug and compiler warnings in strchr_m() test. Bugzilla #2565.
(This used to be commit 17d13b5713
)
This commit is contained in:
parent
1045c78624
commit
219ad7da07
@ -11,7 +11,7 @@ int main(int argc, char *argv[])
|
|||||||
int i;
|
int i;
|
||||||
int iters = 1;
|
int iters = 1;
|
||||||
|
|
||||||
char *ret;
|
const char *ret = NULL;
|
||||||
|
|
||||||
/* Needed to initialize character set */
|
/* Needed to initialize character set */
|
||||||
lp_load("/dev/null", True, False, False);
|
lp_load("/dev/null", True, False, False);
|
||||||
@ -29,6 +29,9 @@ int main(int argc, char *argv[])
|
|||||||
ret = strstr_m(argv[1], argv[2]);
|
ret = strstr_m(argv[1], argv[2]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (ret == NULL)
|
||||||
|
ret = "(null)";
|
||||||
|
|
||||||
printf("%s\n", ret);
|
printf("%s\n", ret);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user