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 308411 Details for
Bug 193740
libapreq2 code miscompiled with -O2: infinite loop
[?]
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]
Fix for libapreq2
apreq-endless-loop.patch (text/plain), 1.18 KB, created by
Bojan Smojver
on 2008-06-05 03:54:38 UTC
(
hide
)
Description:
Fix for libapreq2
Filename:
MIME Type:
Creator:
Bojan Smojver
Created:
2008-06-05 03:54:38 UTC
Size:
1.18 KB
patch
obsolete
>Index: library/parser_multipart.c >=================================================================== >--- library/parser_multipart.c (revision 663420) >+++ library/parser_multipart.c (working copy) >@@ -162,11 +162,13 @@ > * so we can move previous buckets across > * and retest buf against the full bdry. > */ >+ apr_bucket_brigade * volatile in_v = in; >+ > do { >- apr_bucket *f = APR_BRIGADE_FIRST(in); >+ apr_bucket *f = APR_BRIGADE_FIRST(in_v); > APR_BUCKET_REMOVE(f); > APR_BRIGADE_INSERT_TAIL(out, f); >- } while (e != APR_BRIGADE_FIRST(in)); >+ } while (e != APR_BRIGADE_FIRST(in_v)); > off = 0; > goto look_for_boundary_up_front; > } >Index: acinclude.m4 >=================================================================== >--- acinclude.m4 (revision 663420) >+++ acinclude.m4 (working copy) >@@ -214,7 +214,6 @@ > ]) > # -Wdeclaration-after-statement is only supported on gcc 3.4+ > fi >- APR_ADDTO([CFLAGS], "-fno-strict-aliasing") > > APR_ADDTO([CPPFLAGS], "`$APR_CONFIG --cppflags`") >
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 193740
:
130327
| 308411