debugreiserfs: fix incorrect memset size in unpack_stat_data

The memsets to initialize the stat data items were using the
size of the pointer rather than the structure.

Signed-off-by: Jeff Mahoney <jeffm@suse.com>
diff --git a/debugreiserfs/unpack.c b/debugreiserfs/unpack.c
index 4d5dcd4..b0969ff 100644
--- a/debugreiserfs/unpack.c
+++ b/debugreiserfs/unpack.c
@@ -164,7 +164,7 @@
 		struct stat_data_v1 *sd;
 
 		sd = (struct stat_data_v1 *)ih_item_body(bh, ih);
-		memset(sd, 0, sizeof(sd));
+		memset(sd, 0, sizeof(*sd));
 
 		fread16(&sd->sd_mode);
 		fread16(&sd->sd_nlink);
@@ -186,7 +186,7 @@
 		struct stat_data *sd;
 
 		sd = (struct stat_data *)ih_item_body(bh, ih);
-		memset(sd, 0, sizeof(sd));
+		memset(sd, 0, sizeof(*sd));
 
 		fread16(&sd->sd_mode);