Date: Fri Jul 2 15:53:34 CEST 2004
User: Derick Rethans
Directory: xdebug
Log Message:
[0.05]
- Fixed CS
Modified files:
xdebug/xdebug.c (version: 1.225)
[FILE: /xdebug/xdebug.c]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.224
retrieving revision 1.225
diff -u -r1.224 -r1.225
--- xdebug/xdebug.c:1.224 Fri Jul 02 11:50:29 2004 GMT
+++ xdebug/xdebug.c Fri Jul 02 11:53:34 2004 GMT
@@ -905,7 +905,9 @@
) {
convert_to_string_ex(dummy);
magic_cookie = xdstrdup(Z_STRVAL_PP(dummy));
- if (XG(ide_key)) xdfree(XG(ide_key));
+ if (XG(ide_key)) {
+ xdfree(XG(ide_key));
+ }
XG(ide_key) = xdstrdup(Z_STRVAL_PP(dummy));
php_setcookie("XDEBUG_SESSION", sizeof("XDEBUG_SESSION"), Z_STRVAL_PP(dummy), Z_STRLEN_PP(dummy), time(NULL) + 3600, "/", 1, NULL, 0, 0 COOKIE_ENCODE TSRMLS_CC);
} else if (
@@ -914,7 +916,9 @@
) {
convert_to_string_ex(dummy);
magic_cookie = xdstrdup(Z_STRVAL_PP(dummy));
- if (XG(ide_key)) xdfree(XG(ide_key));
+ if (XG(ide_key)) {
+ xdfree(XG(ide_key));
+ }
XG(ide_key) = xdstrdup(Z_STRVAL_PP(dummy));
} else if (getenv("XDEBUG_CONFIG")) {
magic_cookie = xdstrdup(getenv("XDEBUG_CONFIG"));
Received on Fri Jul 02 2004 - 15:53:39 BST
This archive was generated by hypermail 2.2.0 : Sun Jun 24 2018 - 04:00:02 BST