Mesa (9.2): mesa: Add missing switch break in invalidate_framebuffer_storage()

Carl Worth cworth at kemper.freedesktop.org
Wed Oct 16 22:10:51 UTC 2013


Module: Mesa
Branch: 9.2
Commit: cd5ea2788d0fbef0cb60a80a32056e39ec3080e4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=cd5ea2788d0fbef0cb60a80a32056e39ec3080e4

Author: Constantin Baranov <const at mimas.ru>
Date:   Sun Oct 13 01:17:15 2013 +0300

mesa: Add missing switch break in invalidate_framebuffer_storage()

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=70411
Cc: "9.2" <mesa-stable at lists.freedesktop.org>
Reviewed-by: Brian Paul <brianp at vmware.com>
(cherry picked from commit 53904c64da308bc5b5fd98c105fb86ec38cc33a3)

---

 src/mesa/main/fbobject.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c
index 53e2ab7..359518d 100644
--- a/src/mesa/main/fbobject.c
+++ b/src/mesa/main/fbobject.c
@@ -3581,6 +3581,7 @@ invalidate_framebuffer_storage(GLenum target, GLsizei numAttachments,
                            "%s(attachment >= max. color attachments)", name);
                return;
             }
+            break;
          }
          default:
             goto invalid_enum;




More information about the mesa-commit mailing list