1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00
This commit is contained in:
Sascha Schumann
2006-01-13 14:31:59 +00:00
parent d4be8bcc04
commit 925dad8ca1
+3 -3
View File
@@ -3835,7 +3835,7 @@ static long php_intifx_create_char(char* param, long len, HashTable *list TSRMLS
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't create char-resource");
return -1;
}
memset(Ifx_char, 0, sizeof(IFX_IDRES));
memset(Ifx_char, 0, sizeof(IFX_IDRES));
Ifx_char->type = TYPE_CHAR;
@@ -4120,7 +4120,7 @@ static long php_intifxus_create_slob(long create_mode, HashTable *list TSRMLS_DC
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't create slob-resource");
return -1;
}
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
errcode = ifx_lo_def_create_spec(&(Ifx_slob->SLOB.createspec));
if (errcode < 0) {
@@ -4363,7 +4363,7 @@ static long php_intifxus_new_slob(HashTable *list TSRMLS_DC)
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't create slob-resource");
return -1;
}
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
Ifx_slob->type = TYPE_SLOB;
Ifx_slob->SLOB.lofd = -1;