sqlite_query() crashing apache on malformed query
| Bug #28112 | sqlite_query() crashing apache on malformed query | ||||
|---|---|---|---|---|---|
| Submitted: | 2004-04-23 00:10 UTC | Modified: | 2004-04-23 01:02 UTC | ||
| From: | csaba at alum dot mit dot edu | Assigned: | |||
| Status: | Closed | Package: | SQLite related | ||
| PHP Version: | 5.0.0RC2RC1, 4.3.7dev | OS: | * | ||
| Private report: | No | CVE-ID: | None | ||
[2004-04-23 00:10 UTC] csaba at alum dot mit dot edu
Description: ------------ apache dies on an empty query (Apache.exe has generated errors and will be closed by Windows ...). Note that it does not die if the second line in the code below is missing [sqlite_query ($db, "create table frob ..." ]. Also, sqlite_query did OK. Csaba Gabor PS. Note that this appears similar to bug 25502 at http://bugs.php.net/bug.php?id=25502 Reproduce code: --------------- if (!($db = sqlite_open(":memory:", 666, $error))) die ("Couldn't open the database"); sqlite_query($db, "create table frob (foo INTEGER PRIMARY KEY, bar text);"); $res = sqlite_array_query($db, ""); print "passed"; Expected result: ---------------- I wouldn't expect more than a warning. Taking the entire server down seems extreme.
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2004-04-23 00:12 UTC] csaba at alum dot mit dot edu
[2004-04-23 01:01 UTC] helly@php.net
[2004-04-23 01:02 UTC] helly@php.net