X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fadd_image.c;fp=src%2Fadd_image.c;h=a06ee939cbb9b68c44ad4d3d40ed08231022220c;hb=f24f8409b041727329e980fdc81e84a7c9b00e5b;hp=746c06a92dd43ed6d1cf0c427b5e1080988699ec;hpb=69bf8e6b27c11c8dfb0e9794ea43c3b8af72ee38;p=wimlib diff --git a/src/add_image.c b/src/add_image.c index 746c06a9..a06ee939 100644 --- a/src/add_image.c +++ b/src/add_image.c @@ -45,14 +45,14 @@ add_new_dentry_tree(WIMStruct *wim, struct wim_dentry *root_dentry, int ret; metadata_lte = new_lookup_table_entry(); - if (!metadata_lte) + if (metadata_lte == NULL) return WIMLIB_ERR_NOMEM; - metadata_lte->resource_entry.flags = WIM_RESHDR_FLAG_METADATA; + metadata_lte->flags = WIM_RESHDR_FLAG_METADATA; metadata_lte->unhashed = 1; new_imd = new_image_metadata(); - if (!new_imd) { + if (new_imd == NULL) { free_lookup_table_entry(metadata_lte); return WIMLIB_ERR_NOMEM; } @@ -92,7 +92,7 @@ wimlib_add_empty_image(WIMStruct *wim, const tchar *name, int *new_idx_ret) } sd = new_wim_security_data(); - if (!sd) { + if (sd == NULL) { ret = WIMLIB_ERR_NOMEM; goto out; } @@ -172,7 +172,7 @@ wimlib_add_image_multisource(WIMStruct *wim, /* Translate the "capture sources" into generic update commands. */ add_cmds = capture_sources_to_add_cmds(sources, num_sources, add_flags, config); - if (!add_cmds) { + if (add_cmds == NULL) { ret = WIMLIB_ERR_NOMEM; goto out_delete_image; }