Add nullptr check for parser APIs before dereferencing the parser's handle (#44)

[ROCm/rocdecode commit: ecbd787e4a]
Tento commit je obsažen v:
Aryan Salmanpour
2023-11-08 10:18:17 -05:00
odevzdal GitHub
rodič b459dc6f33
revize d9c139d2ab
+6
Zobrazit soubor
@@ -53,6 +53,9 @@ rocDecCreateVideoParser(RocdecVideoParser *pHandle, RocdecParserParams *pParams)
/************************************************************************************************/
rocDecStatus ROCDECAPI
rocDecParseVideoData(RocdecVideoParser handle, RocdecSourceDataPacket *pPacket) {
if (handle == nullptr) {
return ROCDEC_INVALID_PARAMETER;
}
auto parser_hdl = static_cast<RocParserHandle *> (handle);
rocDecStatus ret;
try {
@@ -73,6 +76,9 @@ rocDecParseVideoData(RocdecVideoParser handle, RocdecSourceDataPacket *pPacket)
/************************************************************************************************/
extern rocDecStatus ROCDECAPI
rocDecDestroyVideoParser(RocdecVideoParser handle) {
if (handle == nullptr) {
return ROCDEC_INVALID_PARAMETER;
}
auto parser_hdl = static_cast<RocParserHandle *> (handle);
rocDecStatus ret;
try {