mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 16:04:49 +00:00
lib: fix missed pointer update
Function argument changed from thread * to thread ** without updating the corresponding tracepoint. Signed-off-by: Quentin Young <qlyoung@nvidia.com>
This commit is contained in:
parent
84fa466b68
commit
b4d6e8559f
@ -1233,9 +1233,9 @@ void thread_cancel(struct thread **thread)
|
||||
|
||||
master = (*thread)->master;
|
||||
|
||||
frrtrace(9, frr_libfrr, thread_cancel, master, thread->funcname,
|
||||
thread->schedfrom, thread->schedfrom_line, NULL, thread->u.fd,
|
||||
thread->u.val, thread->arg, thread->u.sands.tv_sec);
|
||||
frrtrace(9, frr_libfrr, thread_cancel, master, (*thread)->funcname,
|
||||
(*thread)->schedfrom, (*thread)->schedfrom_line, NULL, (*thread)->u.fd,
|
||||
(*thread)->u.val, (*thread)->arg, (*thread)->u.sands.tv_sec);
|
||||
|
||||
assert(master->owner == pthread_self());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user