summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/vpopmail/php_vpopmail.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/vpopmail/php_vpopmail.c b/ext/vpopmail/php_vpopmail.c
index 291edcae23..769e269439 100644
--- a/ext/vpopmail/php_vpopmail.c
+++ b/ext/vpopmail/php_vpopmail.c
@@ -405,7 +405,7 @@ PHP_FUNCTION(vpopmail_add_domain_ex)
strcat(cmd,escdomain);
strcat(cmd," ");
strcat(cmd,escpasswd);
- retval=php_Exec(0,cmd,NULL,return_value);
+ retval=php_Exec(0,cmd,NULL,return_value TSRMLS_CC);
efree(cmd);
efree(escdomain);
efree(escpasswd);
@@ -452,7 +452,7 @@ PHP_FUNCTION(vpopmail_del_domain_ex) {
RETURN_FALSE;
}
sprintf(cmd,VPOPMAIL_BIN_DIR VPOPMAIL_DELD"%s",escdomain);
- retval=php_Exec(0,cmd,NULL,return_value);
+ retval=php_Exec(0,cmd,NULL,return_value TSRMLS_CC);
efree(escdomain);
efree(cmd);
@@ -503,7 +503,7 @@ PHP_FUNCTION(vpopmail_add_alias_domain_ex) {
RETURN_FALSE;
}
sprintf(cmd,"%s%s %s",VPOPMAIL_BIN_DIR VPOPMAIL_ADAD,escolddomain,escnewdomain);
- retval=php_Exec(0,cmd,NULL,return_value);
+ retval=php_Exec(0,cmd,NULL,return_value TSRMLS_CC);
efree(cmd);
efree(escnewdomain);
efree(escolddomain);