Browse Source

Fix Win32 build

Added missing 'break'
PHP-5.0
Ard Biesheuvel 22 years ago
parent
commit
17da85ba9b
  1. 2
      ext/interbase/ibase_query.c
  2. 4
      ext/interbase/interbase.c

2
ext/interbase/ibase_query.c

@ -1001,8 +1001,8 @@ static int _php_ibase_exec(INTERNAL_FUNCTION_PARAMETERS, ibase_result **ib_resul
/* this return value evaluates to bool(true) and to int(0) */
RETVAL_STRINGL("0 ",2,1);
}
break;
}
default:
RETVAL_TRUE;
}

4
ext/interbase/interbase.c

@ -28,8 +28,6 @@
#include "php.h"
#define FILE_REVISION "$Revision$"
#if HAVE_IBASE
#include "php_ini.h"
@ -424,6 +422,8 @@ static void _php_ibase_free_trans(zend_rsrc_list_entry *rsrc TSRMLS_DC) /* {{{ *
/* TODO this function should be part of either Zend or PHP API */
static PHP_INI_DISP(php_ibase_password_displayer_cb)
{
TSRMLS_FETCH();
if ((type == PHP_INI_DISPLAY_ORIG && ini_entry->orig_value)
|| (type == PHP_INI_DISPLAY_ACTIVE && ini_entry->value)) {
PUTS("********");

Loading…
Cancel
Save