Skip to content

Commit f89c606

Browse files
committed
std.cfg: Added missing argument numbers to va_arg, va_copy, va_end and va_start.
1 parent 3598f7f commit f89c606

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

cfg/std.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3593,21 +3593,25 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
35933593
<function name="va_arg">
35943594
<noreturn>false</noreturn>
35953595
<leak-ignore/>
3596+
<arg nr="2"/>
35963597
</function>
35973598
<!-- void va_copy(va_list dest, va_list src); -->
35983599
<function name="va_copy">
35993600
<noreturn>false</noreturn>
36003601
<leak-ignore/>
3602+
<arg nr="2"/>
36013603
</function>
36023604
<!-- void va_end(va_list ap); -->
36033605
<function name="va_end">
36043606
<noreturn>false</noreturn>
36053607
<leak-ignore/>
3608+
<arg nr="1"/>
36063609
</function>
36073610
<!-- void va_start(va_list ap, paramN); -->
36083611
<function name="va_start">
36093612
<noreturn>false</noreturn>
36103613
<leak-ignore/>
3614+
<arg nr="2"/>
36113615
</function>
36123616
<!-- float wcstof(const wchar_t *s, wchar ** endp); -->
36133617
<!-- double wcstod(const wchar_t *s, wchar ** endp); -->

0 commit comments

Comments
 (0)