Skip to content

Commit 8d9465b

Browse files
authored
Merge pull request #22 from pennam/devId-check
SElementArduinoCloudDeviceId add validity check reading deviceId
2 parents 4d0474a + 4f206f1 commit 8d9465b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/utility/SElementArduinoCloudDeviceId.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ int SElementArduinoCloudDeviceId::read(SecureElement & se, String & deviceId, co
3434
return 0;
3535
}
3636

37+
int chk;
38+
if (sscanf(reinterpret_cast<char *>(device_id_bytes), "%4x%4x-%4x-%4x-%4x-%4x%4x%4x", &chk, &chk, &chk, &chk, &chk, &chk, &chk, &chk) != 8) {
39+
return 0;
40+
}
41+
3742
deviceId = String(reinterpret_cast<char *>(device_id_bytes));
3843
return 1;
3944
}

0 commit comments

Comments
 (0)