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
43c1b5d2
Commit
43c1b5d2
authored
Nov 17, 2004
by
Bruce Korb
Committed by
Bruce Korb
Nov 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
correct misuse of variables
From-SVN: r90789
parent
13cf6837
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
33 deletions
+40
-33
fixincludes/ChangeLog
+5
-0
fixincludes/fixincl.c
+35
-33
No files found.
fixincludes/ChangeLog
View file @
43c1b5d2
2004-11-15 Bruce Korb <bkorb@gnu.org>
* fixincl.c(fix_with_system): correct misuse of variables and
incorrect application of "sizeof()".
2004-11-13 Joseph S. Myers <joseph@codesourcery.com>
* inclhack.def (hpux_maxint, limits_ifndefs, math_huge_val_ifndef,
...
...
fixincludes/fixincl.c
View file @
43c1b5d2
...
...
@@ -851,41 +851,43 @@ fix_with_system (tFixDesc* p_fixd,
char
*
pz_cmd
;
char
*
pz_scan
;
size_t
argsize
;
int
i
;
tSCC
*
z_applyfix_prog
[
2
]
=
{
"/../fixincludes/applyfix"
EXE_EXT
,
"/../../fixincludes/applyfix"
EXE_EXT
};
if
(
p_fixd
->
fd_flags
&
FD_SUBROUTINE
)
for
(
i
=
0
;
i
<
2
;
i
++
)
{
struct
stat
buf
;
argsize
=
32
+
strlen
(
pz_orig_dir
)
+
sizeof
(
z_applyfix_prog
)
+
strlen
(
pz_fix_file
)
+
strlen
(
pz_file_source
)
+
strlen
(
pz_temp_file
);
pz_cmd
=
xmalloc
(
argsize
);
strcpy
(
pz_cmd
,
pz_orig_dir
);
pz_scan
=
pz_cmd
+
strlen
(
pz_orig_dir
);
strcpy
(
pz_scan
,
z_applyfix_prog
);
pz_scan
+=
sizeof
(
z_applyfix_prog
)
-
1
;
if
(
stat
(
pz_scan
,
&
buf
)
!=
-
1
)
{
*
(
pz_scan
++
)
=
' '
;
/*
* Now add the fix number and file names that may be needed
*/
sprintf
(
pz_scan
,
"%ld
\'
%s
\'
\'
%s
\'
\'
%s
\'
"
,
p_fixd
-
fixDescList
,
pz_fix_file
,
pz_file_source
,
pz_temp_file
);
break
;
}
}
{
static
const
char
z_applyfix_prog
[]
=
"/../fixincludes/applyfix"
EXE_EXT
;
struct
stat
buf
;
argsize
=
32
+
strlen
(
pz_orig_dir
)
+
sizeof
(
z_applyfix_prog
)
+
strlen
(
pz_fix_file
)
+
strlen
(
pz_file_source
)
+
strlen
(
pz_temp_file
);
/* Allocate something sure to be big enough for our purposes */
pz_cmd
=
xmalloc
(
argsize
);
strcpy
(
pz_cmd
,
pz_orig_dir
);
pz_scan
=
pz_cmd
+
strlen
(
pz_orig_dir
);
strcpy
(
pz_scan
,
z_applyfix_prog
);
/* IF we can't find the "applyfix" executable file at the first guess,
try one level higher up */
if
(
stat
(
pz_cmd
,
&
buf
)
==
-
1
)
{
strcpy
(
pz_scan
,
"/.."
);
strcpy
(
pz_scan
+
3
,
z_applyfix_prog
);
}
pz_scan
+=
strlen
(
pz_scan
);
/*
* Now add the fix number and file names that may be needed
*/
sprintf
(
pz_scan
,
" %ld
\'
%s
\'
\'
%s
\'
\'
%s
\'
"
,
p_fixd
-
fixDescList
,
pz_fix_file
,
pz_file_source
,
pz_temp_file
);
}
else
/* NOT an "internal" fix: */
{
size_t
parg_size
;
...
...
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