Changeset: 16d62b30dc1c for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=16d62b30dc1c
Modified Files:
        monetdb5/mal/mal_linker.c
Branch: DataVaults
Log Message:

Avoid priting errors when a module is not found the first time on startup


diffs (21 lines):

diff --git a/monetdb5/mal/mal_linker.c b/monetdb5/mal/mal_linker.c
--- a/monetdb5/mal/mal_linker.c
+++ b/monetdb5/mal/mal_linker.c
@@ -180,7 +180,6 @@ loadLibrary(str filename, int flag)
 
        while (*mod_path) {
                char *p;
-               char *err;
 
                for (p = mod_path; *p && *p != PATH_SEP; p++)
                        ;
@@ -212,8 +211,7 @@ loadLibrary(str filename, int flag)
                        handle = dlopen(nme, mode);
                }
 #endif
-               err = dlerror();
-               printf("err:%s\n", err);
+
                if (*p == 0 || handle != NULL)
                        break;
                mod_path = p + 1;
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to