1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00

Fixed bug #25037 (Possible infinite loop inside SendText())

This commit is contained in:
Ilia Alshanetsky
2003-08-11 16:37:32 +00:00
parent 6825993fcc
commit 6d8305a2d3
+1
View File
@@ -646,6 +646,7 @@ send_chunk:
i = data_cln_len - (parts * 1024);
strlcpy(Buffer, p, i);
Buffer[i] = '\0';
parts++;
goto send_chunk;
}
}