From 271aa40a15be3d111f2016e24832a86657661cca Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 7 Feb 2006 06:10:45 +0000 Subject: add back in path nulling after calling find_dev() since it is needed for now ... --- util-linux/mdev.c | 1 + 1 file changed, 1 insertion(+) (limited to 'util-linux/mdev.c') diff --git a/util-linux/mdev.c b/util-linux/mdev.c index aef84ac45..f6d4d8df0 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c @@ -197,6 +197,7 @@ static void find_dev(char *path) if (entry->d_type == DT_DIR) { snprintf(path+len, PATH_MAX-len, "/%s", entry->d_name); find_dev(path); + path[len] = 0; } /* If there's a dev entry, mknod it */ -- cgit v1.2.3