From 48255c443bafc746eba3461d2ecd70121859a397 Mon Sep 17 00:00:00 2001 From: Robert Milasan Date: Thu, 24 Apr 2014 11:23:33 +0200 Subject: udev: increase the size of RESULT buffer Under some conditions, in udev_rules_apply_to_event the fact that result is 1024 bytes, creates problems if the output of the running command/app is bigger then 1024 bytes. Signed-off-by: Anthony G. Basile --- src/udev/udev-rules.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/udev/udev-rules.c b/src/udev/udev-rules.c index e05f48c0a1..652ac411e1 100644 --- a/src/udev/udev-rules.c +++ b/src/udev/udev-rules.c @@ -2097,7 +2097,7 @@ int udev_rules_apply_to_event(struct udev_rules *rules, struct udev_event *event case TK_M_PROGRAM: { char program[UTIL_PATH_SIZE]; char **envp; - char result[UTIL_PATH_SIZE]; + char result[UTIL_LINE_SIZE]; free(event->program_result); event->program_result = NULL; -- cgit v1.2.3-54-g00ecf