Fix introduced mem leak
diff --git a/bundles/shell/shell/src/dm_shell_list_command.c b/bundles/shell/shell/src/dm_shell_list_command.c
index ce8b722..1e3c18b 100644
--- a/bundles/shell/shell/src/dm_shell_list_command.c
+++ b/bundles/shell/shell/src/dm_shell_list_command.c
@@ -127,6 +127,9 @@
     printUmlDependencies(out, infos);
 
     fprintf(out, "@enduml\n");
+
+    celix_dependencyManager_destroyInfos(mng, infos);
+
 }
 
 static void printUmlComponents(FILE *out, const celix_array_list_t *infos) {