[gbinder] Add model file for Coverity. JB#61912

Eliminate false positive. Help Coverity see there is no resource leak
(CID 444479).
This commit is contained in:
Martin Kampas 2024-04-04 16:25:57 +02:00
parent 12b9fd49ad
commit 52726a07b0
1 changed files with 8 additions and 0 deletions

8
misc/coverity_model.c Normal file
View File

@ -0,0 +1,8 @@
typedef struct gbinder_remote_request GBinderRemoteRequest;
void
gbinder_remote_request_unref(
GBinderRemoteRequest* req)
{
__coverity_free__(req);
}