]> xenbits.xensource.com Git - libvirt.git/commitdiff
m4: Don't suggest attribute malloc
authorMichal Privoznik <mprivozn@redhat.com>
Fri, 18 Oct 2019 08:07:50 +0000 (10:07 +0200)
committerMichal Privoznik <mprivozn@redhat.com>
Fri, 18 Oct 2019 08:55:36 +0000 (10:55 +0200)
With glib inclusion, some of its functions have
__attribute__((__malloc__)) which make compiler realize we want
to use the same attribute for some trivial functions of ours. For
instance qemuDomainManagedSavePath(). I don't see any real
benefit into using the attribute, so disable that suggestion.

In fact, wrong use of the attribute may lead to mysterious bugs:

  https://gitlab.gnome.org/GNOME/glib/issues/1465

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
ACKed-by: Peter Krempa <pkrempa@redhat.com>
m4/virt-compile-warnings.m4

index 7c86fdd3c6e9eb0c24981954aaf2625c2a8b1f31..1318ca59b9a03744978def3676d26d5520eadb9b 100644 (file)
@@ -126,6 +126,7 @@ AC_DEFUN([LIBVIRT_COMPILE_WARNINGS],[
     dontwarn="$dontwarn -Wunused-macros"
     dontwarn="$dontwarn -Woverlength-strings"
     dontwarn="$dontwarn -Wstack-protector"
+    dontwarn="$dontwarn -Wsuggest-attribute=malloc"
 
     # Get all possible GCC warnings
     gl_MANYWARN_ALL_GCC([maybewarn])