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 160604 Details for
Bug 240191
pirut crashes with SIGSEGV
[?]
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]
pigobject patch
gerr.diff (text/plain), 813 bytes, created by
Stas Sergeev
on 2007-08-03 13:00:55 UTC
(
hide
)
Description:
pigobject patch
Filename:
MIME Type:
Creator:
Stas Sergeev
Created:
2007-08-03 13:00:55 UTC
Size:
813 bytes
patch
obsolete
>--- pygobject-2.12.3/gobject/gobjectmodule.c.old 2006-11-18 18:43:23.000000000 +0300 >+++ pygobject-2.12.3/gobject/gobjectmodule.c 2007-08-03 16:10:20.000000000 +0400 >@@ -2514,6 +2514,7 @@ > static char *kwlist[] = { "text", NULL }; > char *text_in, *text_out; > int text_size; >+ GError *error = NULL; > PyObject *retval; > > if (!PyArg_ParseTupleAndKeywords(args, kwargs, >@@ -2521,7 +2522,12 @@ > &text_in, &text_size)) > return NULL; > >- text_out = g_markup_escape_text(text_in, text_size); >+ text_out = g_markup_escape_text_errcheck(text_in, text_size, &error); >+ if (pyg_error_check(&error)) { >+ g_free(text_out); >+ return NULL; >+ } >+ > retval = PyString_FromString(text_out); > g_free(text_out); > return retval;
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 240191
:
154758
|
154759
|
154764
|
154766
|
160603
| 160604 |
160606
|
161640