mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
Add addition overflow check for stream buffer in Software/VNA_embedded/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c
This commit is contained in:
parent
fde6707c9c
commit
9654ca9431
|
|
@ -254,8 +254,15 @@ static void prvInitialiseNewStreamBuffer( StreamBuffer_t * const pxStreamBuffer,
|
||||||
this is a quirk of the implementation that means otherwise the free
|
this is a quirk of the implementation that means otherwise the free
|
||||||
space would be reported as one byte smaller than would be logically
|
space would be reported as one byte smaller than would be logically
|
||||||
expected. */
|
expected. */
|
||||||
xBufferSizeBytes++;
|
if( xBufferSizeBytes < ( xBufferSizeBytes + 1 + sizeof( StreamBuffer_t ) ) )
|
||||||
pucAllocatedMemory = ( uint8_t * ) pvPortMalloc( xBufferSizeBytes + sizeof( StreamBuffer_t ) ); /*lint !e9079 malloc() only returns void*. */
|
{
|
||||||
|
xBufferSizeBytes++;
|
||||||
|
pucAllocatedMemory = ( uint8_t * ) pvPortMalloc( xBufferSizeBytes + sizeof( StreamBuffer_t ) ); /*lint !e9079 malloc() only returns void*. */
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
pucAllocatedMemory = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if( pucAllocatedMemory != NULL )
|
if( pucAllocatedMemory != NULL )
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue