aboutsummaryrefslogtreecommitdiffstats
path: root/extras/edd_id
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2008-10-26 02:31:54 +0100
committerKay Sievers <kay.sievers@vrfy.org>2008-10-26 02:31:54 +0100
commit1822e9b033fcd91a7dfd3b0bfd12cfbbd93fc470 (patch)
treed9c37e4dc229d815686de1ae68f07bae63b605c3 /extras/edd_id
parent21cfb0436c736c262baa37d96625041e3a96db07 (diff)
downloadudev-1822e9b033fcd91a7dfd3b0bfd12cfbbd93fc470.tar.gz
do not init string arrays, just clear first byte
Diffstat (limited to 'extras/edd_id')
-rw-r--r--extras/edd_id/edd_id.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/extras/edd_id/edd_id.c b/extras/edd_id/edd_id.c
index d7aec148..4154387c 100644
--- a/extras/edd_id/edd_id.c
+++ b/extras/edd_id/edd_id.c
@@ -45,9 +45,9 @@ int main(int argc, char *argv[])
int sysfs_fd;
DIR *dir = NULL;
int rc = 1;
- char match[NAME_MAX] = "";
+ char match[NAME_MAX];
- udev = udev_new();
+ udev = udev_new();
if (udev == NULL)
goto exit;
@@ -124,6 +124,7 @@ int main(int argc, char *argv[])
}
/* lookup signature in sysfs to determine the name */
+ match[0] = '\0';
for (dent = readdir(dir); dent != NULL; dent = readdir(dir)) {
char file[UTIL_PATH_SIZE];
char sysfs_id_buf[256];