Commit 7705f8ca authored by Bruce Momjian's avatar Bruce Momjian

Fix function call typo in frontend Win32 code, commit 978f869b

Reported-by: buildfarm member walleye

Backpatch-through: master
parent 300e430c
......@@ -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';
......
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