php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #163 Missing quotation marks causes crash
Submitted: 1998-03-11 16:54 UTC Modified: 1998-03-13 06:19 UTC
From: rafeco at trinet dot com Assigned:
Status: Closed Package: Reproducible Crash
PHP Version: 3.0b5 OS: Windows NT
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: rafeco at trinet dot com
New email:
PHP Version: OS:

 

 [1998-03-11 16:54 UTC] rafeco at trinet dot com
If you leave out the quotation marks when requesting data 
using odbc_result, PHP.exe crashes.

Here's an example script that crashes PHP every time 
(substitute a real DSN, table, and column of course).

<?	$wire = odbc_connect("ANY_DSN", "dba", "dba"); 
	$outcome = odbc_do($wire, "SELECT * FROM ANY_TABLE");
	odbc_fetch_row($outcome);
	$var = odbc_result($outcome, "ANY_FIELD);
?>

Note the missing quotation mark after ANY_FIELD.  That's
what causes the crash.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1998-03-13 06:19 UTC] zeev
Fixed (problem occured on a script that terminated
in the middle of a function call, e.g. 
<? foo("bar"

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 10:01:28 2024 UTC