diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-26 15:45:17 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-26 15:45:17 +0000 |
commit | dd16e0325070225462e98088574fd17defad0ae0 (patch) | |
tree | af6c1681e91a3e5c13bf3dce8aa798c07462468a /util-linux | |
parent | 48a92503e79c2345601821c4599ee25d1db35d66 (diff) | |
download | busybox-w32-dd16e0325070225462e98088574fd17defad0ae0.tar.gz busybox-w32-dd16e0325070225462e98088574fd17defad0ae0.tar.bz2 busybox-w32-dd16e0325070225462e98088574fd17defad0ae0.zip |
small fixes:
fix xstrdup to not grossly overallocate memory
use xopen instean of xopen3 in several places
etc.
git-svn-id: svn://busybox.net/trunk/busybox@16673 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c index c03dd6130..957316d52 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c | |||
@@ -73,7 +73,7 @@ static void make_device(char *path, int delete) | |||
73 | 73 | ||
74 | line++; | 74 | line++; |
75 | /* find end of this line */ | 75 | /* find end of this line */ |
76 | for(end=pos; end-conf<len && *end!='\n'; end++) | 76 | for (end=pos; end-conf<len && *end!='\n'; end++) |
77 | ; | 77 | ; |
78 | 78 | ||
79 | /* Three fields: regex, uid:gid, mode */ | 79 | /* Three fields: regex, uid:gid, mode */ |
@@ -111,7 +111,7 @@ static void make_device(char *path, int delete) | |||
111 | char *s, *s2; | 111 | char *s, *s2; |
112 | 112 | ||
113 | /* Find : */ | 113 | /* Find : */ |
114 | for(s=pos; s<end2 && *s!=':'; s++) | 114 | for (s=pos; s<end2 && *s!=':'; s++) |
115 | ; | 115 | ; |
116 | if (s == end2) break; | 116 | if (s == end2) break; |
117 | 117 | ||