Commit 68dfef04 authored by Tatsuo Ishii's avatar Tatsuo Ishii

Fix memory allocation bug in pgbench.

patches submitted by ITAGAKI Takahiro.
parent 6e38e34d
/*
* $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.51 2006/07/28 22:58:26 ishii Exp $
* $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.52 2006/07/31 05:15:14 ishii Exp $
*
* pgbench: a simple benchmark program for PostgreSQL
* written by Tatsuo Ishii
......@@ -1344,7 +1344,7 @@ main(int argc, char **argv)
exit(1);
}
memset(state + sizeof(*state), 0, sizeof(*state) * (nclients - 1));
memset(state + 1, 0, sizeof(*state) * (nclients - 1));
for (i = 1; i < nclients; i++)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment