resolve BUGFIX deviation xpath check unres module changed
Otherwise caused memory leaks.
diff --git a/src/resolve.c b/src/resolve.c
index e5a1681..99b4a48 100644
--- a/src/resolve.c
+++ b/src/resolve.c
@@ -6105,7 +6105,7 @@
assert(unres);
- LOGVRB("Resolving unresolved schema nodes and their constraints...");
+ LOGVRB("Resolving \"%s\" unresolved schema nodes and their constraints...", mod->name);
ly_vlog_hide(1);
/* uses */
@@ -6192,7 +6192,7 @@
return -1;
}
- LOGVRB("All schema nodes and constraints resolved.");
+ LOGVRB("All \"%s\" schema nodes and constraints resolved.", mod->name);
unres->count = 0;
return EXIT_SUCCESS;
}