Skip to content

Commit

Permalink
Merge pull request #571 from ppisar/dump_genid_format_overflow
Browse files Browse the repository at this point in the history
Fix a possible format overflow in dump_genid()
  • Loading branch information
mlschroe authored Jul 11, 2024
2 parents 8151b3a + f31c6de commit 00db74a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/testcase.c
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ static int
dump_genid(Pool *pool, Strqueue *sq, Id id, int cnt)
{
struct oplist *op;
char cntbuf[20];
char cntbuf[26];
const char *s;

if (ISRELDEP(id))
Expand Down

0 comments on commit 00db74a

Please sign in to comment.