Skip to content

Commit

Permalink
Merge pull request #221 from vrogier/develop-v4.6.3
Browse files Browse the repository at this point in the history
Fix #220. Wrong parameter passed to OCI_StringGetFromType() in OCI_Ge…
  • Loading branch information
vrogier authored Nov 1, 2019
2 parents e42c0c7 + 23d2f30 commit 977f545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resultset.c
Original file line number Diff line number Diff line change
Expand Up @@ -1900,7 +1900,7 @@ const otext * OCI_API OCI_GetString

if (OCI_STATUS)
{
OCI_StringGetFromType(rs->stmt->con, &def->col, data, data_size, def->buf.tmpbuf, bufsize, FALSE);
OCI_StringGetFromType(rs->stmt->con, &def->col, data, data_size, def->buf.tmpbuf, def->buf.tmpsize, FALSE);

OCI_STATUS = (NULL == err || OCI_UNKNOWN == err->type);

Expand Down

0 comments on commit 977f545

Please sign in to comment.