]> wimlib.net Git - wimlib/blobdiff - src/add_image.c
Allow adding an unnamed image
[wimlib] / src / add_image.c
index 7f337c5d04e032e8b0309c73c918a3b169e9f0de..7dcee10b01a4a55ac2ded3dad802dd2007fe5c73 100644 (file)
@@ -77,11 +77,8 @@ wimlib_add_empty_image(WIMStruct *wim, const tchar *name, int *new_idx_ret)
 
        DEBUG("Adding empty image \"%"TS"\"", name);
 
-       if (name == NULL || name[0] == T('\0')) {
-               ERROR("Must specify a non-empty string for the image name");
-               ret = WIMLIB_ERR_INVALID_PARAM;
-               goto out;
-       }
+       if (name == NULL)
+               name = T("");
 
        if (wim->hdr.total_parts != 1) {
                ERROR("Cannot add an image to a split WIM");
@@ -120,7 +117,7 @@ out_put_image_metadata:
                           wim->lookup_table);
        goto out;
 out_free_security_data:
-       free_security_data(sd);
+       free_wim_security_data(sd);
 out:
        return ret;
 }