Reversed nullptr device check
parent
150c7d2b07
commit
bb2d7c1265
|
|
@ -6,7 +6,7 @@ using namespace icsneo;
|
||||||
|
|
||||||
APIEvent::APIEvent(Type type, APIEvent::Severity severity, const Device* device) : eventStruct({}) {
|
APIEvent::APIEvent(Type type, APIEvent::Severity severity, const Device* device) : eventStruct({}) {
|
||||||
this->device = device;
|
this->device = device;
|
||||||
if(!device) {
|
if(device) {
|
||||||
serial = device->getSerial();
|
serial = device->getSerial();
|
||||||
eventStruct.serial[serial.copy(eventStruct.serial, sizeof(eventStruct.serial))] = '\0';
|
eventStruct.serial[serial.copy(eventStruct.serial, sizeof(eventStruct.serial))] = '\0';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue