summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--win32/build/cppcheck.cfg18
1 files changed, 18 insertions, 0 deletions
diff --git a/win32/build/cppcheck.cfg b/win32/build/cppcheck.cfg
index 7b90142643..b90c9e180e 100644
--- a/win32/build/cppcheck.cfg
+++ b/win32/build/cppcheck.cfg
@@ -431,4 +431,22 @@
<noreturn>true</noreturn>
<leak-ignore/>
</function>
+ <function name="php_hashcontext_dtor">
+ <noreturn>false</noreturn>
+ <arg nr="1">
+ <not-null/>
+ <not-uninit/>
+ </arg>
+ </function>
+ <function name="php_hashcontext_create">
+ <noreturn>false</noreturn>
+ <arg nr="1">
+ <not-null/>
+ <not-uninit/>
+ </arg>
+ </function>
+ <resource>
+ <alloc init="true">php_hashcontext_create</alloc>
+ <dealloc>php_hashcontext_dtor</dealloc>
+ </resource>
</def>