return;
}
- old_value = zend_ini_string("include_path", sizeof("include_path")-1, 0);
+ old_value = zend_ini_string("include_path", sizeof("include_path") - 1, 0);
/* copy to return here, because alter might free it! */
if (old_value) {
RETVAL_STRING(old_value);
RETVAL_FALSE;
}
- key = STR_INIT("include_path", sizeof("include_path")-1, 0);
+ key = STR_INIT("include_path", sizeof("include_path") - 1, 0);
if (zend_alter_ini_entry_ex(key, new_value, new_value_len, PHP_INI_USER, PHP_INI_STAGE_RUNTIME, 0 TSRMLS_CC) == FAILURE) {
STR_RELEASE(key);
zval_dtor(return_value);
return;
}
- str = zend_ini_string("include_path", sizeof("include_path"), 0);
+ str = zend_ini_string("include_path", sizeof("include_path") - 1, 0);
if (str == NULL) {
RETURN_FALSE;