blob: 67e518cf1510980f5a7d6a9c3908e585865addfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Index: blenc.c
===================================================================
--- blenc.c (révision 333437)
+++ blenc.c (copie de travail)
@@ -550,7 +550,7 @@
}
script = emalloc(BLENC_BUFSIZE);
- for(i = 2; (bytes = php_stream_read(stream, &script[index], BLENC_BUFSIZE TSRMLS_CC)) > 0; i++) {
+ for(i = 2; (bytes = php_stream_read(stream, &script[index], BLENC_BUFSIZE)) > 0; i++) {
script_len += bytes;
if(bytes == BLENC_BUFSIZE) {
|