diff options
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r-- | modutils/modprobe.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index bc2dbd128..f6681a8d8 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c | |||
@@ -242,11 +242,8 @@ static void include_conf(struct dep_t **first, struct dep_t **current, char *buf | |||
242 | 242 | ||
243 | while (reads(fd, buffer, buflen)) { | 243 | while (reads(fd, buffer, buflen)) { |
244 | int l; | 244 | int l; |
245 | char *p; | ||
246 | 245 | ||
247 | p = strchr(buffer, '#'); | 246 | *strchrnul(buffer, '#') = '\0'; |
248 | if (p) | ||
249 | *p = '\0'; | ||
250 | 247 | ||
251 | l = strlen(buffer); | 248 | l = strlen(buffer); |
252 | 249 | ||