mirror of
https://github.com/postgres/postgres.git
synced 2026-04-23 07:07:22 -04:00
Fix function call typo in frontend Win32 code, commit 978f869b99
Reported-by: buildfarm member walleye Backpatch-through: master
This commit is contained in:
parent
300e430c76
commit
7705f8ca03
1 changed files with 1 additions and 1 deletions
|
|
@ -348,7 +348,7 @@ open_pipe_stream(const char *command)
|
|||
return NULL;
|
||||
}
|
||||
buf[0] = '"';
|
||||
mempcy(&buf[1], command, cmdlen);
|
||||
memcpy(&buf[1], command, cmdlen);
|
||||
buf[cmdlen + 1] = '"';
|
||||
buf[cmdlen + 2] = '\0';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue