|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-07-10 17:15 UTC] mbeccati@php.net
-Status: Open
+Status: Not a bug
[2016-07-10 17:15 UTC] mbeccati@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 09:00:01 2025 UTC |
Description: ------------ Hi, In /ext/pdo/pdo_sql_parser.c, an uninitalized pointer read may occur: 424 Scanner s; [..] 440 while((t = scan(&s)) != PDO_PARSER_EOI) { scan() will try to read s.ptr, which does not exist. Thanks,