git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8376bf9
)
do not search for log queue in plugins
author
Michal Voců
<michal@ruk.cuni.cz>
Mon, 13 Sep 2010 13:37:40 +0000
(13:37 +0000)
committer
Michal Voců
<michal@ruk.cuni.cz>
Mon, 13 Sep 2010 13:37:40 +0000
(13:37 +0000)
org.glite.lb.logger/src/plugin_mgr.c
patch
|
blob
|
blame
|
history
diff --git
a/org.glite.lb.logger/src/plugin_mgr.c
b/org.glite.lb.logger/src/plugin_mgr.c
index
b1a7633
..
cdf1e70
100644
(file)
--- a/
org.glite.lb.logger/src/plugin_mgr.c
+++ b/
org.glite.lb.logger/src/plugin_mgr.c
@@
-79,6
+79,9
@@
plugin_get(const char *scheme)
{
struct plugin_list *outp;
+ if(scheme == NULL) {
+ return NULL;
+ }
for(outp = plugins; outp != NULL; outp = outp->next) {
if((outp->plugin_def.plugin_supports_scheme)(scheme)) {
return &outp->plugin_def;