diff options
| author | Michael Biebl <biebl@debian.org> | 2015-05-05 17:49:11 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2015-05-05 17:49:11 +0200 |
| commit | e847e3cc3e4eded45a358bf838e1edcf4c12fcb5 (patch) | |
| tree | 9db16e390931b9b800a174c7117b9297b351283f /src/nm-auth-subject.c | |
| parent | 1cd35b49de89f65c386ae2ff98a8e08342c080b0 (diff) | |
| parent | f408e27bccfacf347605a8d98649975a68f38a17 (diff) | |
Merge tag 'upstream/1.0.2'
Upstream version 1.0.2
Diffstat (limited to 'src/nm-auth-subject.c')
| -rw-r--r-- | src/nm-auth-subject.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nm-auth-subject.c b/src/nm-auth-subject.c index 209f98e1..13133f27 100644 --- a/src/nm-auth-subject.c +++ b/src/nm-auth-subject.c @@ -38,6 +38,7 @@ #include "nm-enum-types.h" #include "nm-glib-compat.h" #include "NetworkManagerUtils.h" +#include "gsystem-local-alloc.h" G_DEFINE_TYPE (NMAuthSubject, nm_auth_subject, G_TYPE_OBJECT) @@ -175,7 +176,7 @@ _new_unix_process (DBusGMethodInvocation *context, NMAuthSubject *self; gboolean success = FALSE; gulong pid = 0, uid = 0; - char *dbus_sender = NULL; + gs_free char *dbus_sender = NULL; g_return_val_if_fail (context || (connection && message), NULL); |