Skip to content

Commit 06ffd2f

Browse files
author
Sascha Schumann
committed
WS
1 parent 73426e2 commit 06ffd2f

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
@@ -3948,7 +3948,7 @@ static long php_intifx_create_char(char* param, long len, HashTable *list TSRMLS
39483948
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't create char-resource");
39493949
return -1;
39503950
}
3951-
memset(Ifx_char, 0, sizeof(IFX_IDRES));
3951+
memset(Ifx_char, 0, sizeof(IFX_IDRES));
39523952

39533953
Ifx_char->type = TYPE_CHAR;
39543954

@@ -4233,7 +4233,7 @@ static long php_intifxus_create_slob(long create_mode, HashTable *list TSRMLS_DC
42334233
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't create slob-resource");
42344234
return -1;
42354235
}
4236-
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
4236+
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
42374237

42384238
errcode = ifx_lo_def_create_spec(&(Ifx_slob->SLOB.createspec));
42394239
if (errcode < 0) {
@@ -4476,7 +4476,7 @@ static long php_intifxus_new_slob(HashTable *list TSRMLS_DC)
44764476
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't create slob-resource");
44774477
return -1;
44784478
}
4479-
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
4479+
memset(Ifx_slob, 0, sizeof(IFX_IDRES));
44804480

44814481
Ifx_slob->type = TYPE_SLOB;
44824482
Ifx_slob->SLOB.lofd = -1;

0 commit comments

Comments
 (0)