diff options
author | Derick Rethans <derick@php.net> | 2002-03-06 11:26:05 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2002-03-06 11:26:05 +0000 |
commit | 2f04af44029f6a20b961c28143bb15115167f98f (patch) | |
tree | 3f25e24d03fef6f4d8fc44b248fefd4741d8a717 /ext/posix/posix.c | |
parent | 79330dc592d8f83a552f923aff87bdcef5be8360 (diff) | |
download | php-git-2f04af44029f6a20b961c28143bb15115167f98f.tar.gz |
- More ZTS fixes
Diffstat (limited to 'ext/posix/posix.c')
-rw-r--r-- | ext/posix/posix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/posix/posix.c b/ext/posix/posix.c index 6c56c7c154..eb5391c9c2 100644 --- a/ext/posix/posix.c +++ b/ext/posix/posix.c @@ -852,7 +852,7 @@ PHP_FUNCTION(posix_getpwuid) /* {{{ posix_addlimit */ -static int posix_addlimit(int limit, char *name, zval *return_value) { +static int posix_addlimit(int limit, char *name, zval *return_value TSRMLS_DC) { int result; struct rlimit rl; char hard[80]; @@ -956,7 +956,7 @@ PHP_FUNCTION(posix_getrlimit) } for (l=limits; l->name; l++) { - if (posix_addlimit(l->limit, l->name, return_value) == FAILURE) + if (posix_addlimit(l->limit, l->name, return_value TSRMLS_CC) == FAILURE) RETURN_FALSE; } } |