diff options
author | Donald Sharp <donaldsharp72@gmail.com> | 2025-01-21 20:09:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-21 20:09:41 +0100 |
commit | 6c7de02802db7f860bc784aa9e25688cc92ef468 (patch) | |
tree | ca1156b20c81eb028a9b200949074e8f1422c4c8 | |
parent | Merge pull request #17793 from LabNConsulting/working/lb/fix-r8-rpms (diff) | |
parent | lib: fix coverity use after free issue: CID 1620101 (diff) | |
download | frr-6c7de02802db7f860bc784aa9e25688cc92ef468.tar.xz frr-6c7de02802db7f860bc784aa9e25688cc92ef468.zip |
Merge pull request #17895 from LabNConsulting/chopps/fix-coverity-use-after-free
lib: fix coverity use after free issue: CID 1620101
-rw-r--r-- | lib/northbound_notif.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/northbound_notif.c b/lib/northbound_notif.c index 10a81d05f..9caca9f6d 100644 --- a/lib/northbound_notif.c +++ b/lib/northbound_notif.c @@ -600,6 +600,7 @@ static void timer_walk_continue(struct event *event) timer_walk_done(args); return; } + group = args->group; } path = group->cur_change->path; |