diff options
| author | Sterling Hughes <sterling@php.net> | 2001-12-09 01:18:20 +0000 |
|---|---|---|
| committer | Sterling Hughes <sterling@php.net> | 2001-12-09 01:18:20 +0000 |
| commit | c8ef634f1b4b62822af23907d865043c602567e2 (patch) | |
| tree | f1f282c7da2b91f45a23e0d6703603fb1e2a7fe4 /ext/xslt/xslt.c | |
| parent | 437ea23723d2c72fa0a2ae17afa3d4456564095d (diff) | |
| download | php-git-c8ef634f1b4b62822af23907d865043c602567e2.tar.gz | |
Align comments in xslt.c
First try at fixing funny resource free'ing problems with objects, don't
perform a zval seperation when we're directly saving a pointer to the SAX
or Scheme handlers
Diffstat (limited to 'ext/xslt/xslt.c')
| -rw-r--r-- | ext/xslt/xslt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/xslt/xslt.c b/ext/xslt/xslt.c index 3e65d1fe88..e4025717ae 100644 --- a/ext/xslt/xslt.c +++ b/ext/xslt/xslt.c @@ -217,9 +217,9 @@ extern void xslt_call_function(char *name, zval **user_args, zval **retval) { - zval ***argv; /* Argument container, maps around for call_user_function_ex() */ - int error; /* Error container */ - int idx; /* Idx, when looping through and free'ing the arguments */ + zval ***argv; /* Argument container, maps around for call_user_function_ex() */ + int error; /* Error container */ + int idx; /* Idx, when looping through and free'ing the arguments */ TSRMLS_FETCH(); /* For TS mode, fetch the executor globals */ argv = emalloc(argc * sizeof(zval **)); |
