summaryrefslogtreecommitdiff
path: root/udev_config.c
diff options
context:
space:
mode:
authorHarald Hoyer <harald@redhat.com>2007-09-11 17:17:29 +0200
committerKay Sievers <kay.sievers@vrfy.org>2007-09-11 17:17:29 +0200
commit16511863d928e7fd82f15ae64850ab21e74f0f16 (patch)
tree0a0ad903a190103eb8aeb982ba1456813f07b9f3 /udev_config.c
parentb1ac36ff5e3756cefc79967a26280056da31bf6f (diff)
check line length after comment check and whitespace strip
Diffstat (limited to 'udev_config.c')
-rw-r--r--udev_config.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/udev_config.c b/udev_config.c
index 3f226b9d7c..2f2a69eb48 100644
--- a/udev_config.c
+++ b/udev_config.c
@@ -111,11 +111,6 @@ static int parse_config_file(void)
cur += count+1;
lineno++;
- if (count >= sizeof(line)) {
- err("line too long, conf line skipped %s, line %d", udev_config_filename, lineno);
- continue;
- }
-
/* eat the whitespace */
while ((count > 0) && isspace(bufline[0])) {
bufline++;
@@ -128,6 +123,11 @@ static int parse_config_file(void)
if (bufline[0] == COMMENT_CHARACTER)
continue;
+ if (count >= sizeof(line)) {
+ err("line too long, conf line skipped %s, line %d", udev_config_filename, lineno);
+ continue;
+ }
+
memcpy(line, bufline, count);
line[count] = '\0';