Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
56c6dbee
Commit
56c6dbee
authored
Jun 07, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Get rid of the SIGSEGV handler, this only makes things harder to debug.
parent
428ed94f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
10 deletions
+0
-10
widl.c
tools/widl/widl.c
+0
-10
No files found.
tools/widl/widl.c
View file @
56c6dbee
...
...
@@ -144,7 +144,6 @@ static struct option long_options[] = {
};
static
void
rm_tempfile
(
void
);
static
void
segvhandler
(
int
sig
);
static
char
*
make_token
(
const
char
*
name
)
{
...
...
@@ -186,7 +185,6 @@ int main(int argc,char *argv[])
int
ret
=
0
;
int
opti
=
0
;
signal
(
SIGSEGV
,
segvhandler
);
signal
(
SIGTERM
,
exit_on_signal
);
signal
(
SIGINT
,
exit_on_signal
);
#ifdef SIGHUP
...
...
@@ -455,11 +453,3 @@ static void rm_tempfile(void)
if
(
server_name
)
unlink
(
server_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