Skip to content
Snippets Groups Projects
Commit 7ee22dc8 authored by Costas Argyris's avatar Costas Argyris Committed by Jonathan Yong
Browse files

libiberty: pex-win32.c: Fix some typos.


libiberty/ChangeLog:

	* pex-win32.c: fix typos.

Signed-off-by: default avatarCostas Argyris <costas.argyris@gmail.com>
Signed-off-by: default avatarJonathan Yong <10walls@gmail.com>
parent 71ea7a30
No related branches found
No related tags found
No related merge requests found
...@@ -351,7 +351,7 @@ argv_to_cmdline (char *const *argv) ...@@ -351,7 +351,7 @@ argv_to_cmdline (char *const *argv)
prevent wasting 2 chars per argument of the CreateProcess 32k char prevent wasting 2 chars per argument of the CreateProcess 32k char
limit. We need only escape embedded double-quotes and immediately limit. We need only escape embedded double-quotes and immediately
preceeding backslash characters. A sequence of backslach characters preceeding backslash characters. A sequence of backslach characters
that is not follwed by a double quote character will not be that is not followed by a double quote character will not be
escaped. */ escaped. */
needs_quotes = 0; needs_quotes = 0;
for (j = 0; argv[i][j]; j++) for (j = 0; argv[i][j]; j++)
...@@ -366,7 +366,7 @@ argv_to_cmdline (char *const *argv) ...@@ -366,7 +366,7 @@ argv_to_cmdline (char *const *argv)
/* Escape preceeding backslashes. */ /* Escape preceeding backslashes. */
for (k = j - 1; k >= 0 && argv[i][k] == '\\'; k--) for (k = j - 1; k >= 0 && argv[i][k] == '\\'; k--)
cmdline_len++; cmdline_len++;
/* Escape the qote character. */ /* Escape the quote character. */
cmdline_len++; cmdline_len++;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment