From: Jesse Millan This patch eliminates the warning that is generated when passing a reference of an uninitialized variable to a function where it possible that the function will return without initializing that variable. Signed-off-by: Jesse Millan Signed-off-by: Domen Puncer --- eventpoll.c | 3 +++ 1 files changed, 3 insertions(+) Index: quilt/fs/eventpoll.c =================================================================== --- quilt.orig/fs/eventpoll.c +++ quilt/fs/eventpoll.c @@ -748,6 +748,9 @@ eexit_3: eexit_2: put_filp(file); eexit_1: + /* Reference went uninitialized. */ + *efd = 0; + *efile = NULL; return error; } --