php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #64611 Segfault using ODBC with SQL Server "Native Client"
Submitted: 2013-04-08 14:54 UTC Modified: 2013-04-09 02:56 UTC
From: brandonkirsch at gmail dot com Assigned:
Status: Duplicate Package: ODBC related
PHP Version: 5.5.0beta1 OS: Linux - OpenSuse 12.2 64-bit
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
19 - 10 = ?
Subscribe to this entry?

 
 [2013-04-08 14:54 UTC] brandonkirsch at gmail dot com
Description:
------------
A segfault has existed in PHP since at least 5.2.17 when using ODBC with SQL Server Native Client driver.

Selecting NULL values in a computed expression causes the segfault.

I created a patch for this over a year ago and submitted the pull request here: https://github.com/php/php-src/pull/193

The pull request has not been accepted, so the segfault still exists even in 5.5.0beta2.



Test script:
---------------
<?php

$conn = odbc_connect('Driver=SQL Server Native Client 11.0;server=xxx;uid=xxx;pwd=xxx;Database=xxx','','');

$query = odbc_exec($conn, 'select null');

$segfault = odbc_fetch_array($query); // segfault



Expected result:
----------------
odbc_fetch_array to return a result rather than segfault.

Actual result:
--------------
segfault.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2013-04-09 02:56 UTC] laruence@php.net
dup to #61387
 [2013-04-09 02:56 UTC] laruence@php.net
-Status: Open +Status: Duplicate
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 03:01:29 2024 UTC