SWDEV-362367 - pciBusId should be large enough to store 13 characters including the NULL-terminator.

Change-Id: Ie58be0495065713bae7e13923ac04a4643e246be
Цей коміт міститься в:
Jaydeep Patel
2022-10-31 07:27:04 +00:00
зафіксовано Jaydeepkumar Patel
джерело 0c4307f86e
коміт 4e2f7192e3
+2 -1
Переглянути файл
@@ -430,7 +430,8 @@ hipError_t hipDeviceGetPCIBusId ( char* pciBusId, int len, int device ) {
HIP_RETURN(hipErrorInvalidDevice);
}
if (pciBusId == nullptr || len <= 0) {
//pciBusId should be large enough to store 13 characters including the NULL-terminator.
if (pciBusId == nullptr || len <= 12) {
HIP_RETURN(hipErrorInvalidValue);
}