Commit: 63f242178d33fa22346d2e976b06a76455dbd6ab Author: Stanley Sufficool <ssuffic...@php.net> Sat, 5 Oct 2013 20:59:20 -0700 Parents: d74b9cfee528936a50af7772c3dc56843a068c7f Branches: PHP-5.4
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=63f242178d33fa22346d2e976b06a76455dbd6ab Log: FIX BUG #65219 - Typo correction Bugs: https://bugs.php.net/65219 Changed paths: M ext/pdo_dblib/dblib_driver.c Diff: diff --git a/ext/pdo_dblib/dblib_driver.c b/ext/pdo_dblib/dblib_driver.c index 13444b8..daf5494 100644 --- a/ext/pdo_dblib/dblib_driver.c +++ b/ext/pdo_dblib/dblib_driver.c @@ -369,7 +369,7 @@ static int pdo_dblib_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_ */ #ifndef DBSETLDBNAME if (vars[3].optval) { - if(FAIL == dbuse(H->link, vars[3].optval)) goto gleanup; + if(FAIL == dbuse(H->link, vars[3].optval)) goto cleanup; } #endif -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php