It wasn't complaining about that null pointer reference.

svn path=/trunk/; revision=35981
This commit is contained in:
Guy Harris 2011-02-17 18:43:38 +00:00
parent 17485dbd86
commit b32b4d08bd
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ dfilter_compile(const gchar *text, dfilter_t **dfp)
g_assert(dfp);
if (text == NULL) {
if (!text) {
*dfp = NULL;
return FALSE;
}