projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0fb781f
)
(_dl_catch_error): Actually call the OPERATE function. Duh.
author
roland
<roland>
Wed, 3 May 1995 01:18:46 +0000
(
01:18
+0000)
committer
roland
<roland>
Wed, 3 May 1995 01:18:46 +0000
(
01:18
+0000)
elf/dl-error.c
patch
|
blob
|
history
diff --git
a/elf/dl-error.c
b/elf/dl-error.c
index
5b5a616
..
b9ee351
100644
(file)
--- a/
elf/dl-error.c
+++ b/
elf/dl-error.c
@@
-38,6
+38,7
@@
_dl_catch_error (const char **errstring, void (*operate) (void))
signalled_errstring = NULL;
errcode = setjmp (catch_env);
+ (*operate) ();
*errstring = signalled_errstring;
return *errstring ? errcode : 0;
}