summaryrefslogtreecommitdiff
path: root/main/php_variables.c
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2008-08-03 12:12:45 +0000
committerJani Taskinen <jani@php.net>2008-08-03 12:12:45 +0000
commitc9c53d7bcd6291400808e48c4b9690a0414034df (patch)
tree2f9340c5983748d92bb59eafa3f4184293503db9 /main/php_variables.c
parent82d833a94c2c756fb2d8fee5942c584f2f1293fe (diff)
downloadphp-git-c9c53d7bcd6291400808e48c4b9690a0414034df.tar.gz
- Nuketh C++ comments from C files.
Diffstat (limited to 'main/php_variables.c')
-rw-r--r--main/php_variables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/php_variables.c b/main/php_variables.c
index 850db25e2c..f823e53bb8 100644
--- a/main/php_variables.c
+++ b/main/php_variables.c
@@ -366,12 +366,12 @@ plain_var:
zend_hash_next_index_insert(symtable1, &gpc_element, sizeof(zval *), (void **) &gpc_element_p);
} else {
/* UTODO fix for php_addslashes case */
- //char *escaped_index = php_addslashes(index, index_len, &index_len, 0 TSRMLS_CC);
+ /* char *escaped_index = php_addslashes(index, index_len, &index_len, 0 TSRMLS_CC); */
zstr escaped_index;
escaped_index.u = index;
zend_u_symtable_update(symtable1, IS_UNICODE, escaped_index, index_len+1, &gpc_element, sizeof(zval *), (void **) &gpc_element_p);
- //efree(escaped_index);
+ /* efree(escaped_index); */
}
}
}