diff options
Diffstat (limited to 'server/util_script.c')
-rw-r--r-- | server/util_script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/util_script.c b/server/util_script.c index 5708c086..12a056f5 100644 --- a/server/util_script.c +++ b/server/util_script.c @@ -565,7 +565,7 @@ AP_DECLARE(int) ap_scan_script_header_err_core_ex(request_rec *r, char *buffer, } *l++ = '\0'; - while (*l && apr_isspace(*l)) { + while (apr_isspace(*l)) { ++l; } |