]> granicus.if.org Git - php/commitdiff
- fix build (all platforms)
authorPierre Joye <pajoye@php.net>
Thu, 11 Dec 2008 15:30:18 +0000 (15:30 +0000)
committerPierre Joye <pajoye@php.net>
Thu, 11 Dec 2008 15:30:18 +0000 (15:30 +0000)
ext/mssql/php_mssql.c

index b9a85ad8032ccf90cdc4ec1d2473b52b3b5a9b67..bb4970a9d64d7138564da8533ec946ff997dc798 100644 (file)
@@ -885,6 +885,7 @@ static void php_mssql_get_column_content_with_type(mssql_link *mssql_ptr,int off
                                res_buf[res_length] = '\0';
                                ZVAL_STRINGL(result, res_buf, res_length, 0);
                        }
+                       }
                        break;
                case SQLNUMERIC:
                default: {
@@ -937,7 +938,7 @@ static void php_mssql_get_column_content_with_type(mssql_link *mssql_ptr,int off
        }
 }
 
-static void php_mssql_get_column_content_without_type(mssql_link *mssql_ptr,int offset,zval *result, int column_type TSRMLS_DC)
+static void php_mssql_get_column_content_without_type(mssql_link *mssql_ptr, int offset,zval *result, int column_type TSRMLS_DC)
 {
        if (dbdatlen(mssql_ptr->link,offset) == 0) {
                ZVAL_NULL(result);