X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fadd_image.c;h=d40dfa097487d6efb1108775d9a30847e50f6339;hb=334e2d17f2d69fbe28e6dd60a5b82a3837188d77;hp=7dcee10b01a4a55ac2ded3dad802dd2007fe5c73;hpb=35f5614d21f94548119cc22b8ad0bcd3227cae10;p=wimlib diff --git a/src/add_image.c b/src/add_image.c index 7dcee10b..d40dfa09 100644 --- a/src/add_image.c +++ b/src/add_image.c @@ -80,11 +80,9 @@ wimlib_add_empty_image(WIMStruct *wim, const tchar *name, int *new_idx_ret) if (name == NULL) name = T(""); - if (wim->hdr.total_parts != 1) { - ERROR("Cannot add an image to a split WIM"); - ret = WIMLIB_ERR_SPLIT_UNSUPPORTED; + ret = can_modify_wim(wim); + if (ret) goto out; - } if (wimlib_image_name_in_use(wim, name)) { ERROR("There is already an image named \"%"TS"\" in the WIM!",