]> wimlib.net Git - wimlib/commitdiff
wimlib_update_image(): Call xml_update_image_info()
authorEric Biggers <ebiggers3@gmail.com>
Sat, 11 May 2013 06:12:41 +0000 (01:12 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Sat, 11 May 2013 06:12:41 +0000 (01:12 -0500)
src/update_image.c

index ce77c688f300b7f893b08096a567aa66ac1954b1..d37c91461d986d6a90e3d4ec44305ef4e5599edc 100644 (file)
@@ -25,6 +25,7 @@
 #include "dentry.h"
 #include "lookup_table.h"
 #include "security.h"
+#include "xml.h"
 #include <errno.h>
 
 /* Creates a new directory to place in the WIM image.  This is to create parent
@@ -706,7 +707,9 @@ wimlib_update_image(WIMStruct *wim,
        DEBUG("Executing update commands");
 
        ret = execute_update_commands(wim, cmds_copy, num_cmds, progress_func);
-
+       if (ret)
+               goto out_free_cmds_copy;
+       xml_update_image_info(wim, wim->current_image);
 out_free_cmds_copy:
        free_update_commands(cmds_copy, num_cmds);
 out: