Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 1447360 Details for
Bug 1585494
NetworkManager-1.11.4-1.fc29 causes compose failure on aarch64
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
[PATCH v2] manager: fix failed assertion on user activations
0001-manager-fix-failed-assertion-on-user-activations.patch (text/plain), 1.50 KB, created by
Beniamino Galvani
on 2018-06-04 08:48:17 UTC
(
hide
)
Description:
[PATCH v2] manager: fix failed assertion on user activations
Filename:
MIME Type:
Creator:
Beniamino Galvani
Created:
2018-06-04 08:48:17 UTC
Size:
1.50 KB
patch
obsolete
>From 486ae4c362db5799222142347e0cc321ea27d5c0 Mon Sep 17 00:00:00 2001 >From: Beniamino Galvani <bgalvani@redhat.com> >Date: Mon, 4 Jun 2018 10:36:52 +0200 >Subject: [PATCH v2] manager: fix failed assertion on user activations > >We can't use g_steal_pointer(&active) in the argument list if another >argument uses @active because the order of evaluation is not defined. > >This fixes the following bug: > > src/nm-manager.c:511:_async_op_complete_ac_auth_cb: assertion failed: (active == async_op_data->ac_auth.active) > >Fixes: f4fc62bad8559715bde501e5a2383a2fc78a2d97 > >https://bugzilla.redhat.com/show_bug.cgi?id=1585494 >--- > src/nm-manager.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > >diff --git a/src/nm-manager.c b/src/nm-manager.c >index 9f0891a75..c594f9b74 100644 >--- a/src/nm-manager.c >+++ b/src/nm-manager.c >@@ -4747,12 +4747,16 @@ impl_manager_activate_connection (NMDBusObject *obj, > if (!active) > goto error; > >- nm_active_connection_authorize (g_steal_pointer (&active), >+ nm_active_connection_authorize (active, > NULL, > _async_op_complete_ac_auth_cb, > _async_op_data_new_ac_auth_activate_user (self, > active, > invocation)); >+ >+ /* we passed the pointer on to _async_op_data_new_ac_auth_activate_user() */ >+ g_steal_pointer (&active); >+ > return; > > error: >-- >2.17.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1585494
:
1447204
|
1447357
| 1447360