From: Eric Biggers Date: Sat, 1 Sep 2012 21:28:50 +0000 (-0500) Subject: Minor fixes (this is now v1.0.0 by the way) X-Git-Tag: v1.0.0~1 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=cbda4ad178585ce34762b0da0f488efddd8cf8ae Minor fixes (this is now v1.0.0 by the way) --- diff --git a/src/dentry.h b/src/dentry.h index b539fb58..8283b596 100644 --- a/src/dentry.h +++ b/src/dentry.h @@ -99,7 +99,6 @@ static inline void destroy_ads_entry(struct ads_entry *entry) { FREE(entry->stream_name); FREE(entry->stream_name_utf8); - memset(entry, 0, sizeof(entry)); } static inline bool ads_entry_has_name(const struct ads_entry *entry, diff --git a/src/ntfs-capture.c b/src/ntfs-capture.c index cd534a21..2c478b10 100644 --- a/src/ntfs-capture.c +++ b/src/ntfs-capture.c @@ -288,7 +288,8 @@ static int capture_ntfs_streams(struct dentry *dentry, ntfs_inode *ni, lte = NULL; } else { if (type == AT_REPARSE_POINT && data_size < 8) { - ERROR("`%s': reparse point buffer too small"); + ERROR("`%s': reparse point buffer too small", + path); ret = WIMLIB_ERR_NTFS_3G; goto out_put_actx; }