projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a76eb4
)
error: define g_autoptr() cleanup function for the Error type
author
Maciej S. Szmigiero
<maciej.szmigiero@oracle.com>
Tue, 4 Mar 2025 22:03:35 +0000
(23:03 +0100)
committer
Cédric Le Goater
<clg@redhat.com>
Thu, 6 Mar 2025 05:47:33 +0000
(06:47 +0100)
Automatic memory management helps avoid memory safety issues.
Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
Link:
https://lore.kernel.org/qemu-devel/a5843c5fa64d7e5239a4316092ec0ef0d10c2320.1741124640.git.maciej.szmigiero@oracle.com
Signed-off-by: Cédric Le Goater <clg@redhat.com>
include/qapi/error.h
patch
|
blob
|
history
diff --git
a/include/qapi/error.h
b/include/qapi/error.h
index f5fe2162623e5770d652f7415ebc25172d97616e..41e38163804904874e5d114b699a3e2a93d3fc6d 100644
(file)
--- a/
include/qapi/error.h
+++ b/
include/qapi/error.h
@@
-437,6
+437,8
@@
Error *error_copy(const Error *err);
*/
void error_free(Error *err);
+G_DEFINE_AUTOPTR_CLEANUP_FUNC(Error, error_free)
+
/*
* Convenience function to assert that *@errp is set, then silently free it.
*/