aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-01-16 20:51:27 +0000
committerChristian Grothoff <christian@grothoff.org>2010-01-16 20:51:27 +0000
commitb46609bfdec4f98344e460f788f98c8c4078ccae (patch)
tree01c788a5dd67a8afc115dba3735a5e426b4461cf
parent01e7d62c0740b69488164835360291c30df5d1c4 (diff)
downloadlibextractor-b46609bfdec4f98344e460f788f98c8c4078ccae.tar.gz
libextractor-b46609bfdec4f98344e460f788f98c8c4078ccae.zip
fix
-rw-r--r--src/main/extractor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/extractor.c b/src/main/extractor.c
index 09d402b..98723ac 100644
--- a/src/main/extractor.c
+++ b/src/main/extractor.c
@@ -641,7 +641,7 @@ get_symbol_with_prefix(void *lib_handle,
641 char *dot; 641 char *dot;
642 const char *(*opt_fun)(void); 642 const char *(*opt_fun)(void);
643 643
644 *options = NULL; 644 if (NULL != options) *options = NULL;
645 sym_name = strstr (prefix, "_"); 645 sym_name = strstr (prefix, "_");
646 if (sym_name == NULL) 646 if (sym_name == NULL)
647 return NULL; 647 return NULL;