posix.cfg: Improved configuration for dlopen() and dlclose(). Ensure the return value is taken into account for dlopen() and leak-ignore flag is not present for dlopen() and dlclose().
This commit is contained in:
parent
32dad3f44a
commit
d774359f68
|
@ -348,7 +348,7 @@
|
|||
<!-- void *dlopen(const char *file, int mode); -->
|
||||
<function name="dlopen">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<use-retval/>
|
||||
<returnValue type="void*"/>
|
||||
<arg nr="1" direction="in">
|
||||
<not-uninit/>
|
||||
|
@ -376,7 +376,6 @@
|
|||
<!-- int dlclose(void *handle); -->
|
||||
<function name="dlclose">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue type="int"/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
|
|
Loading…
Reference in New Issue