Browse Source

Clarify and optimize

experimental/zts_stdc_scanners
Zeev Suraski 25 years ago
parent
commit
38e5a2077d
  1. 2
      ext/standard/head.c

2
ext/standard/head.c

@ -132,7 +132,7 @@ PHP_FUNCTION(setcookie)
len += Z_STRLEN_PP(z_domain);
}
cookie = emalloc(len + 100);
if (z_value && (!Z_STRVAL_PP(z_value) || (Z_STRVAL_PP(z_value) && !Z_STRVAL_PP(z_value)[0]))) {
if (z_value && Z_STRLEN_PP(z_value)==0) {
/*
* MSIE doesn't delete a cookie when you set it to a null value
* so in order to force cookies to be deleted, even on MSIE, we

Loading…
Cancel
Save