mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
[PATCH] hrtimers: fix possible use of NULL pointer in posix-timers
Fixup the conversion of posix-timers to hrtimers. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
bc1978d404
commit
b6557fbca8
@ -290,7 +290,8 @@ void do_schedule_next_timer(struct siginfo *info)
|
||||
info->si_overrun = timr->it_overrun_last;
|
||||
}
|
||||
|
||||
unlock_timer(timr, flags);
|
||||
if (timr)
|
||||
unlock_timer(timr, flags);
|
||||
}
|
||||
|
||||
int posix_timer_event(struct k_itimer *timr,int si_private)
|
||||
|
Loading…
Reference in New Issue
Block a user