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 1447855 Details for
Bug 1573839
[NMCI] [abrt] [faf] NetworkManager: raise(): /usr/bin/nmcli killed by 6
[?]
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] cli: fix array out-of-bounds access on command timeout
0001-cli-fix-array-out-of-bounds-access-on-command-timeou.patch (text/plain), 1.18 KB, created by
Beniamino Galvani
on 2018-06-05 12:50:00 UTC
(
hide
)
Description:
[PATCH] cli: fix array out-of-bounds access on command timeout
Filename:
MIME Type:
Creator:
Beniamino Galvani
Created:
2018-06-05 12:50:00 UTC
Size:
1.18 KB
patch
obsolete
>From 92ebd16cee2a7a306abae7fd3cba3f1366471f14 Mon Sep 17 00:00:00 2001 >From: Beniamino Galvani <bgalvani@redhat.com> >Date: Tue, 5 Jun 2018 14:38:58 +0200 >Subject: [PATCH] cli: fix array out-of-bounds access on command timeout > >Fixes: 4b3297271e6f7502631719148d5880489ec56eff > >https://bugzilla.redhat.com/show_bug.cgi?id=1573839 >--- > clients/cli/connections.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/clients/cli/connections.c b/clients/cli/connections.c >index f8caa10df..9b66916fb 100644 >--- a/clients/cli/connections.c >+++ b/clients/cli/connections.c >@@ -2834,17 +2834,17 @@ connection_cb_info_finish (ConnectionCbInfo *info, gpointer obj) > { > if (obj) { > obj = connection_cb_info_obj_list_steal (info, obj); > if (obj) > connection_cb_info_obj_list_destroy (info, obj); > } else { > while (info->obj_list->len > 0) { > obj = info->obj_list->pdata[info->obj_list->len - 1]; >- g_ptr_array_remove_index (info->obj_list, info->obj_list->len); >+ g_ptr_array_remove_index (info->obj_list, info->obj_list->len - 1); > connection_cb_info_obj_list_destroy (info, obj); > } > } > > if (info->obj_list->len > 0) > return; > > nm_clear_g_source (&info->timeout_id); >-- >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 1573839
: 1447855