mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
Typo fix for MemSet size.
Fujii Masao
This commit is contained in:
@ -148,7 +148,7 @@ parse_basebackup_options(List *options, basebackup_options *opt)
|
|||||||
bool o_progress = false;
|
bool o_progress = false;
|
||||||
bool o_fast = false;
|
bool o_fast = false;
|
||||||
|
|
||||||
MemSet(opt, 0, sizeof(opt));
|
MemSet(opt, 0, sizeof(*opt));
|
||||||
foreach(lopt, options)
|
foreach(lopt, options)
|
||||||
{
|
{
|
||||||
DefElem *defel = (DefElem *) lfirst(lopt);
|
DefElem *defel = (DefElem *) lfirst(lopt);
|
||||||
|
Reference in New Issue
Block a user