svnmerge 8340: Theres no need to check the address of a stack declared array for NULL, thanks darix

git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@8341 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2007-10-24 15:07:52 +00:00
parent 377d879f48
commit eeb3a177f8

View File

@ -60,7 +60,7 @@ class ModuleAntiBottler : public Module
}
}
// Bug Fix (#14) -- FCS
if (!(data) || !(*data))
if (!*data)
return 0;
strtok(data," ");