Skip to content

Commit

Permalink
make stapos an unsigned int just in case
Browse files Browse the repository at this point in the history
  • Loading branch information
davecramer committed Feb 28, 2024
1 parent e6e791c commit f64c0e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion environ.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ ER_ReturnError(PG_ErrorInfo *pgerror,
PG_ErrorInfo *error;
BOOL partial_ok = ((flag & PODBC_ALLOW_PARTIAL_EXTRACT) != 0);
const char *msg;
UWORD msglen, stapos, wrtlen, pcblen;
UWORD msglen, wrtlen, pcblen;
UInt4 stapos,

if (!pgerror)
return SQL_NO_DATA_FOUND;
Expand Down

0 comments on commit f64c0e5

Please sign in to comment.