Skip to content

Commit 925dad8

Browse files
author
Sascha Schumann
committed
WS
1 parent d4be8bc commit 925dad8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/informix/ifx.ec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3835,7 +3835,7 @@ static long php_intifx_create_char(char* param, long len, HashTable *list TSRMLS
38353835
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't create char-resource");
38363836
return -1;
38373837
}
3838-
memset(Ifx_char, 0, sizeof(IFX_IDRES));
3838+
memset(Ifx_char, 0, sizeof(IFX_IDRES));
38393839

38403840
Ifx_char->type = TYPE_CHAR;
38413841

@@ -4120,7 +4120,7 @@ static long php_intifxus_create_slob(long create_mode, HashTable *list TSRMLS_DC
41204120
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't create slob-resource");
41214121
return -1;
41224122
}
4123-
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
4123+
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
41244124

41254125
errcode = ifx_lo_def_create_spec(&(Ifx_slob->SLOB.createspec));
41264126
if (errcode < 0) {
@@ -4363,7 +4363,7 @@ static long php_intifxus_new_slob(HashTable *list TSRMLS_DC)
43634363
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't create slob-resource");
43644364
return -1;
43654365
}
4366-
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
4366+
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
43674367

43684368
Ifx_slob->type = TYPE_SLOB;
43694369
Ifx_slob->SLOB.lofd = -1;

0 commit comments

Comments
 (0)