- MFH: Fix mem. leak

This commit is contained in:
Felipe Pena 2009-02-09 12:07:23 +00:00
parent fcfcacefc9
commit efdaaa3f59

View File

@ -470,6 +470,9 @@ static int firebird_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_dat
case PDO_PARAM_EVT_ALLOC:
if (param->is_param) {
/* allocate the parameter */
if (var->sqlind) {
efree(var->sqlind);
}
var->sqlind = (void*)emalloc(var->sqllen + 2*sizeof(short));
var->sqldata = &((char*)var->sqlind)[sizeof(short)];
}