mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
The check checks whether p is non-NULL. But if it were NULL the function would crash in later code, so the check is useless. It seems like *p was intended, but that is redundant as well because isspace would return false on '\0'.