jerenkrantz 01/11/20 00:18:38
Modified: . CHANGES
dso/unix dso.c
Log:
Update *ressym on success in the Darwin DSO load path.
Submitted by: Sander Temme <[EMAIL PROTECTED]>
Reviewed by: Justin Erenkrantz
Revision Changes Path
1.184 +2 -0 apr/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apr/CHANGES,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -r1.183 -r1.184
--- CHANGES 2001/11/16 12:14:09 1.183
+++ CHANGES 2001/11/20 08:18:37 1.184
@@ -1,5 +1,7 @@
Changes with APR b1
+ *) Fix bug in Darwin DSO code. [Sander Temme <[EMAIL PROTECTED]>]
+
*) Fix apr_setup_signal_thread() to grab the right error code from
a sigprocmask() failure. This only affects platforms that use
sigprocmask() in lieu of pthread_sigmask(). [Jeff Trawick]
1.45 +1 -0 apr/dso/unix/dso.c
Index: dso.c
===================================================================
RCS file: /home/cvs/apr/dso/unix/dso.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- dso.c 2001/11/13 21:15:33 1.44
+++ dso.c 2001/11/20 08:18:38 1.45
@@ -209,6 +209,7 @@
handle->errormsg = "cannot resolve symbol";
return APR_EINIT;
}
+ *ressym = retval;
return APR_SUCCESS;
#elif defined(DSO_USE_DLFCN)