mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Add addition overflow check for stream buffer (#226)
This commit is contained in:
parent
c7a9a01c94
commit
d05b9c123f
|
@ -258,8 +258,16 @@ 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