fix(rt): Fixes Coverity false positive in va_list initialization

This commit is contained in:
Konstantin Kondrashov
2025-08-20 14:35:29 +03:00
committed by BOT
parent 1ca82baec3
commit 91a2744d44

View File

@@ -506,7 +506,7 @@ mqd_t mq_open( const char * name,
if( oflag & O_CREAT )
{
va_list args;
va_list args = {0};
va_start( args, oflag );
mode = va_arg( args, mode_t );
attr = va_arg( args, struct mq_attr * );