Skip to content

Commit

Permalink
More thread safety work
Browse files Browse the repository at this point in the history
  • Loading branch information
zsuraski committed Apr 21, 1999
1 parent 7a87fcb commit c5af324
Show file tree
Hide file tree
Showing 12 changed files with 256 additions and 185 deletions.
1 change: 1 addition & 0 deletions ext/standard/basic_functions.c
Expand Up @@ -1732,6 +1732,7 @@ void php3_call_user_method(INTERNAL_FUNCTION_PARAMETERS)
pval **params;
pval retval;
int arg_count=ARG_COUNT(ht);
CLS_FETCH();

if (arg_count<2) {
WRONG_PARAM_COUNT;
Expand Down
1 change: 1 addition & 0 deletions ext/standard/exec.c
Expand Up @@ -342,6 +342,7 @@ PHP_FUNCTION(shell_exec)
FILE *in;
int readbytes,total_readbytes=0,allocated_space;
pval *cmd;
PLS_FETCH();

if (ARG_COUNT(ht)!=1 || getParameters(ht, 1, &cmd)==FAILURE) {
WRONG_PARAM_COUNT;
Expand Down

0 comments on commit c5af324

Please sign in to comment.