Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-02-01 08:00:15 +0300
committerChristopher Faylor <me@cgf.cx>2003-02-01 08:00:15 +0300
commita5a93a62b2e1f8b13d20f72f0d1a6f5266c05c37 (patch)
treebe908e1fae0c18104d6ba848a5ac22d4cde6fcfd /winsup/cygwin
parentb0a82a859dde5807c66ed4eee81f8788905ed43e (diff)
* dlfcn.cc (dlerror): Only report load errors once per error.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/dlfcn.cc13
2 files changed, 13 insertions, 4 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 9f1527aee..80e8c9f44 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,9 @@
2003-01-31 Christopher Faylor <cgf@redhat.com>
+ * dlfcn.cc (dlerror): Only report load errors once per error.
+
+2003-01-31 Christopher Faylor <cgf@redhat.com>
+
* fhandler_serial.cc (fhandler_serial::open): Avoid extraneous setting
of res.
diff --git a/winsup/cygwin/dlfcn.cc b/winsup/cygwin/dlfcn.cc
index b6babe66b..b03f685fc 100644
--- a/winsup/cygwin/dlfcn.cc
+++ b/winsup/cygwin/dlfcn.cc
@@ -144,8 +144,13 @@ dlclose (void *handle)
char *
dlerror ()
{
- char *ret = 0;
- if (_dl_error)
- ret = _dl_buffer;
- return ret;
+ char *res;
+ if (!_dl_error)
+ res = NULL;
+ else
+ {
+ _dl_error = 0;
+ res = _dl_buffer;
+ }
+ return res;
}