Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
b47785f4
Commit
b47785f4
authored
May 31, 2004
by
Danny Smith
Committed by
Danny Smith
May 31, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pex-win32.c (fix_argv): Expand comment.
From-SVN: r82482
parent
421563d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
libiberty/ChangeLog
+4
-0
libiberty/pex-win32.c
+6
-1
No files found.
libiberty/ChangeLog
View file @
b47785f4
2004-05-31 Danny Smith <dannysmith@users.sourceforge.net>
* pex-win32.c (fix_argv): Expand comment.
2004-05-25 Daniel Jacobowitz <drow@false.org>
* Makefile.in: Add .NOEXPORT.
...
...
libiberty/pex-win32.c
View file @
b47785f4
...
...
@@ -59,7 +59,12 @@ fix_argv (argvec)
int
i
;
char
*
command0
=
argvec
[
0
];
/* Ensure that the executable pathname uses Win32 backslashes. */
/* Ensure that the executable pathname uses Win32 backslashes. This
is not necessary on NT, but on W9x, forward slashes causes failure
of spawn* and exec* functions (and probably any function that
calls CreateProcess) *iff* the executable pathname (argvec[0]) is
a quoted string. And quoting is necessary in case a pathname
contains embedded white space. You can't win. */
for
(;
*
command0
!=
'\0'
;
command0
++
)
if
(
*
command0
==
'/'
)
*
command0
=
'\\'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment