gnu.cfg: Improved configuration for mkostemp(), mkstemps() and mkostemps().
This commit is contained in:
parent
719eb25ba9
commit
0469111750
|
@ -762,7 +762,6 @@
|
|||
<function name="mkostemp,mkstemps">
|
||||
<returnValue type="int"/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" direction="inout">
|
||||
<not-null/>
|
||||
<not-uninit/>
|
||||
|
@ -776,7 +775,6 @@
|
|||
<function name="mkostemps">
|
||||
<returnValue type="int"/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1" direction="inout">
|
||||
<not-null/>
|
||||
<not-uninit/>
|
||||
|
@ -1122,6 +1120,12 @@
|
|||
</arg>
|
||||
</function>
|
||||
<!-- ########## Resource allocation ########## -->
|
||||
<resource>
|
||||
<alloc init="true">mkostemp</alloc>
|
||||
<alloc init="true">mkstemps</alloc>
|
||||
<alloc init="true">mkostemps</alloc>
|
||||
<dealloc>close</dealloc>
|
||||
</resource>
|
||||
<resource>
|
||||
<dealloc>close</dealloc>
|
||||
<alloc init="true">epoll_create</alloc>
|
||||
|
|
Loading…
Reference in New Issue