Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1001)

Unified Diff: third_party/mesa/README.chromium

Issue 7074026: Fix mesa not checking for a valid depth in mesa's _mesa_TexSubImage3D (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/mesa/MesaLib/src/mesa/main/teximage.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/mesa/README.chromium
diff --git a/third_party/mesa/README.chromium b/third_party/mesa/README.chromium
index a778a9f61bfde1b5709210724953730febcbeaa9..1f4eac35185450f354881de87492a991096b5d39 100644
--- a/third_party/mesa/README.chromium
+++ b/third_party/mesa/README.chromium
@@ -2,6 +2,7 @@ Name: mesa
Version: 7.9
URL: http://www.mesa3d.org/
License File: MesaLib/docs/COPYING
+Security Critical: Yes
Description:
This directory contains a copy of these MesaLib components:
@@ -83,3 +84,7 @@ Later modifications (see chromium.patch):
- Suppressed spurious compiler warning from gcc in eglCompareConfig by
reorganizing the .h a little
+- Corrected the comparison in src/mesa/main/teximage.c line 2801 to check
+ if width > 0 && height > 0 && depth > 0, instead of checking
+ width > 0 && height > 0 && height > 0 . See
+ https://bugs.freedesktop.org/show_bug.cgi?id=37648
« no previous file with comments | « third_party/mesa/MesaLib/src/mesa/main/teximage.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698