Fixed missing return

This commit is contained in:
Armin Novak 2022-07-07 17:05:53 +02:00 committed by David Fort
parent 36c7c0320b
commit 586675942a

View File

@ -1409,4 +1409,5 @@ wStream WinPrAsn1DecGetStream(WinPrAsn1Decoder* dec)
Stream_StaticConstInit(&s, Stream_Pointer(&dec->source), Stream_StaticConstInit(&s, Stream_Pointer(&dec->source),
Stream_GetRemainingLength(&dec->source)); Stream_GetRemainingLength(&dec->source));
return s;
} }