fix crash when in alert state with no event
This commit is contained in:
parent
cc3bce48b7
commit
f8b779dc25
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue