diff options
author | Derick Rethans <derick@php.net> | 2002-06-28 14:35:20 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2002-06-28 14:35:20 +0000 |
commit | ea7653f667b3a958e98b5dfc2f798235da53eb2e (patch) | |
tree | dd268b31a246a9a8b8effa1dd24debf36e704d0f /ext/imap/php_imap.c | |
parent | 29a2967936872150ca72b2cd054c96a468942525 (diff) | |
download | php-git-ea7653f667b3a958e98b5dfc2f798235da53eb2e.tar.gz |
- Fix TSRM gotcha
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index f67607324f..17a968746e 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -3241,7 +3241,7 @@ PHP_FUNCTION(imap_mail_compose) /* {{{ _php_imap_mail */ -int _php_imap_mail(char *to, char *subject, char *message, char *headers, char *cc, char *bcc, char* rpath) +int _php_imap_mail(char *to, char *subject, char *message, char *headers, char *cc, char *bcc, char* rpath TSRMLS_DC) { #ifdef PHP_WIN32 int tsm_err; @@ -3349,7 +3349,7 @@ PHP_FUNCTION(imap_mail) rpath = Z_STRVAL_PP(argv[6]); } - if (_php_imap_mail(to, subject, message, headers, cc, bcc, rpath)) { + if (_php_imap_mail(to, subject, message, headers, cc, bcc, rpath TSRMLS_CC)) { RETURN_TRUE; } else { RETURN_FALSE; |