Return FALSE from proto_tracking_interesting_fields() when no tree.

svn path=/trunk/; revision=30533
This commit is contained in:
Stig Bjørlykke 2009-10-12 08:19:30 +00:00
parent ec95db36a7
commit b510b97ff1
1 changed files with 1 additions and 1 deletions

View File

@ -5368,7 +5368,7 @@ gboolean
proto_tracking_interesting_fields(proto_tree *tree)
{
if (!tree)
return NULL;
return FALSE;
return (PTREE_DATA(tree)->interesting_hfids != NULL);
}