[uClibc-cvs] uClibc/ldso/libdl dlib.c,1.24,1.25

Erik Andersen andersen at codepoet.org
Sat Mar 1 07:47:12 UTC 2003


Update of /var/cvs/uClibc/ldso/libdl
In directory winder:/tmp/cvs-serv9013/ldso/libdl

Modified Files:
	dlib.c 
Log Message:
doh.  I forgot mips can't talk to globals that early on in the
process.  Fix that up too.
 -Erik


Index: dlib.c
===================================================================
RCS file: /var/cvs/uClibc/ldso/libdl/dlib.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- dlib.c	28 Feb 2003 15:29:47 -0000	1.24
+++ dlib.c	1 Mar 2003 07:47:08 -0000	1.25
@@ -135,7 +135,7 @@
 #endif
 
 	/* A bit of sanity checking... */
-	if (!(flag & RTLD_LAZY|RTLD_NOW)) {
+	if (!(flag & (RTLD_LAZY|RTLD_NOW))) {
 		_dl_error_number = LD_BAD_HANDLE;
 		return NULL;
 	}




More information about the uClibc-cvs mailing list