diff options
author | Wez Furlong <wez@php.net> | 2002-03-18 18:54:32 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-03-18 18:54:32 +0000 |
commit | c9d5e137380893c2608ebe4aefeb46026d5efcef (patch) | |
tree | 898f5a7e8894a9fe9f9fdbb0a0fa8080bebbbc72 /ext/ftp/ftp.c | |
parent | 41c1c084953a6a5024c56df2b79bcb1fad820633 (diff) | |
download | php-git-c9d5e137380893c2608ebe4aefeb46026d5efcef.tar.gz |
TSRMLS related work on streams, as discussed with Zeev.
# Should be the last "broad" commit for a while
# Don't forget to make clean ; make
Diffstat (limited to 'ext/ftp/ftp.c')
-rw-r--r-- | ext/ftp/ftp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/ftp/ftp.c b/ext/ftp/ftp.c index c3a7818534..b41367926a 100644 --- a/ext/ftp/ftp.c +++ b/ext/ftp/ftp.c @@ -547,6 +547,7 @@ ftp_get(ftpbuf_t *ftp, php_stream *outstream, const char *path, ftptype_t type) char *ptr; int lastch; int rcvd; + TSRMLS_FETCH(); if (ftp == NULL) return 0; @@ -619,6 +620,7 @@ ftp_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type) int size; char *ptr; int ch; + TSRMLS_FETCH(); if (ftp == NULL) return 0; |