Skip to content

Instantly share code, notes, and snippets.

@justincormack
Last active August 29, 2015 13:57
Show Gist options
  • Save justincormack/9540012 to your computer and use it in GitHub Desktop.
Save justincormack/9540012 to your computer and use it in GitHub Desktop.
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