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 871496 Details for
Bug 1056299
Can not log in from the GDM
[?]
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 SIGSEGV for heigth = 0 and width = 0 in libdrm memory alloc
fix-sigsegv.patch (text/plain), 552 bytes, created by
Thomas Meyer
on 2014-03-06 14:42:39 UTC
(
hide
)
Description:
Fix SIGSEGV for heigth = 0 and width = 0 in libdrm memory alloc
Filename:
MIME Type:
Creator:
Thomas Meyer
Created:
2014-03-06 14:42:39 UTC
Size:
552 bytes
patch
obsolete
>diff --git a/src/uxa/intel_memory.c b/src/uxa/intel_memory.c >index e51fa33..83a7425 100644 >--- a/src/uxa/intel_memory.c >+++ b/src/uxa/intel_memory.c >@@ -213,6 +213,14 @@ drm_intel_bo *intel_allocate_framebuffer(ScrnInfoPtr scrn, > unsigned long *out_pitch, > uint32_t *out_tiling) > { >+ assert(scrn != null); >+ assert(out_pitch != null); >+ assert(out_tiling != null); >+ >+ if (width <= 0 || height <= 0) { >+ return NULL; >+ } >+ > intel_screen_private *intel = intel_get_screen_private(scrn); > drm_intel_bo *front_buffer; > uint32_t tiling_mode;
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 1056299
:
861020
| 871496