X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Funix_capture.c;h=d16eae6d367105ae4ec16c9efe72ba397330213a;hp=1d116d4b09ac77a430640858e9334a5ef2b53c1d;hb=a6e50e8eb32035d44c94fd63bfae6c3de7481055;hpb=f24f8409b041727329e980fdc81e84a7c9b00e5b diff --git a/src/unix_capture.c b/src/unix_capture.c index 1d116d4b..d16eae6d 100644 --- a/src/unix_capture.c +++ b/src/unix_capture.c @@ -296,8 +296,8 @@ out: /* * unix_build_dentry_tree(): - * Builds a tree of WIM dentries from an on-disk directory tree (UNIX - * version; no NTFS-specific data is captured). + * Builds a tree of WIM dentries from an on-disk directory tree (UNIX + * version; no NTFS-specific data is captured). * * @root_ret: Place to return a pointer to the root of the dentry tree. Only * modified if successful. Set to NULL if the file or directory was @@ -348,7 +348,7 @@ unix_build_dentry_tree(struct wim_dentry **root_ret, if (path_len >= path_bufsz) return WIMLIB_ERR_INVALID_PARAM; - path_buf = MALLOC(path_bufsz); + path_buf = MALLOC(path_bufsz); if (!path_buf) return WIMLIB_ERR_NOMEM; memcpy(path_buf, root_disk_path, path_len + 1);