From f8b779dc2513cac8196534854812897125ed5057 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 31 May 2021 16:02:42 -0400 Subject: [PATCH] fix crash when in alert state with no event --- src/zm_monitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_monitor.cpp b/src/zm_monitor.cpp index be0db927a..02f6e282c 100644 --- a/src/zm_monitor.cpp +++ b/src/zm_monitor.cpp @@ -2231,7 +2231,7 @@ bool Monitor::Analyse() { } } else if ( state == ALERT ) { // Alert means this frame has no motion, but we were alarmed and are still recording. - if ( noteSetMap.size() > 0 ) + if ((noteSetMap.size() > 0) and event) event->updateNotes(noteSetMap); } else if ( state == TAPE ) { // bulk frame code moved to event.