projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5bc3f05
)
Patch from Denis Vlasenko:
author
Rob Landley
<rob@landley.net>
Sat, 29 Apr 2006 20:03:54 +0000
(20:03 -0000)
committer
Rob Landley
<rob@landley.net>
Sat, 29 Apr 2006 20:03:54 +0000
(20:03 -0000)
ix bug (inode_map and zone_map are char* pointers,
sizeof() on them gives 4 or 8)
util-linux/fsck_minix.c
patch
|
blob
|
history
diff --git
a/util-linux/fsck_minix.c
b/util-linux/fsck_minix.c
index d7d81f130d3b612f713a3cee95f24316d66ed039..350c957862f4dab1cabb284f4694b96900f665c5 100644
(file)
--- a/
util-linux/fsck_minix.c
+++ b/
util-linux/fsck_minix.c
@@
-671,8
+671,8
@@
static void read_tables(void)
{
inode_map = xmalloc(IMAPS * BLOCK_SIZE);
zone_map = xmalloc(ZMAPS * BLOCK_SIZE);
- memset(inode_map, 0,
sizeof(inode_map)
);
- memset(zone_map, 0,
sizeof(zone_map)
);
+ memset(inode_map, 0,
IMAPS * BLOCK_SIZE
);
+ memset(zone_map, 0,
ZMAPS * BLOCK_SIZE
);
inode_buffer = xmalloc(INODE_BUFFER_SIZE);
inode_count = xmalloc(INODES + 1);
zone_count = xmalloc(ZONES);