|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-08-08 18:13 UTC] iliaa@php.net
[2005-08-08 23:32 UTC] fmk@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 04:00:02 2025 UTC |
Description: ------------ mssql_fetch_batch() leaks in several places. Reproduce code: --------------- <?php $c = mssql_connect($host, $user, $passwd); mssql_select_db($dbase); $r = mssql_query("SELECT * FROM test_table"); mssql_fetch_batch($r); echo "Done\n"; ?> Expected result: ---------------- Done Actual result: -------------- /home/dev/php-src/ext/mssql/php_mssql.c(1065) : Freeing 0x082C0BE4 (3 bytes), script=/www/index.php /home/dev/php-src/ext/mssql/php_mssql.c(1052) : Freeing 0x082C0BAC (3 bytes), script=/www/index.php