Last active
August 29, 2015 13:57
-
-
Save justincormack/9540012 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RCS file: /cvsroot/src/lib/librumpuser/rumpuser_dl.c,v | |
retrieving revision 1.26 | |
diff -u -r1.26 rumpuser_dl.c | |
--- lib/librumpuser/rumpuser_dl.c 13 Mar 2014 11:21:54 -0000 1.26 | |
+++ lib/librumpuser/rumpuser_dl.c 14 Mar 2014 00:53:49 -0000 | |
@@ -382,6 +382,9 @@ | |
int error; | |
mainhandle = dlopen(NULL, RTLD_NOW); | |
+ /* Will be null if statically linked so just return */ | |
+ if (mainhandle == NULL) | |
+ return; | |
if (dlinfo(mainhandle, RTLD_DI_LINKMAP, &mainmap) == -1) { | |
fprintf(stderr, "warning: rumpuser module bootstrap " | |
"failed: %s\n", dlerror()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment