Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
49564a92
Commit
49564a92
authored
Dec 10, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wrc: Don't catch SIGSEGV.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
aaa5216a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
10 deletions
+0
-10
wrc.c
tools/wrc/wrc.c
+0
-10
No files found.
tools/wrc/wrc.c
View file @
49564a92
...
...
@@ -155,7 +155,6 @@ int parser_debug, yy_flex_debug;
resource_t
*
resource_top
;
/* The top of the parsed resources */
static
void
cleanup_files
(
void
);
static
void
segvhandler
(
int
sig
);
enum
long_options_values
{
...
...
@@ -434,7 +433,6 @@ int main(int argc,char *argv[])
{
int
i
;
signal
(
SIGSEGV
,
segvhandler
);
signal
(
SIGTERM
,
exit_on_signal
);
signal
(
SIGINT
,
exit_on_signal
);
#ifdef SIGHUP
...
...
@@ -551,11 +549,3 @@ static void cleanup_files(void)
if
(
output_name
)
unlink
(
output_name
);
if
(
temp_name
)
unlink
(
temp_name
);
}
static
void
segvhandler
(
int
sig
)
{
fprintf
(
stderr
,
"
\n
%s:%d: Oops, segment violation
\n
"
,
input_name
,
line_number
);
fflush
(
stdout
);
fflush
(
stderr
);
abort
();
}
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