|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2009-05-07 22:46 UTC] mbeccati@php.net
Description: ------------ Reported here: http://gcov.php.net/viewer.php?version=PHP_5_3&func=compile_results PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 20:00:01 2025 UTC |
Looks like this: if (*len) { /* sqlite3.h says "the NUL terminator is included in the byte count * for TEXT values" */ *len--; } is not needed (anymore?) as sqlite3_column_bytes() is already returning the correct number of bytes. So fixing the warning by using (*len)-- would in fact break PDO_Sqlite.