[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

libdrm: Changes to 'ubuntu'



 nouveau/pushbuf.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit bcb55c0bb8182f4ec7206bce4eef19fb63a5a02e
Author: Maarten Lankhorst <maarten.lankhorst@canonical.com>
Date:   Thu Nov 7 13:30:19 2013 +0100

    nouveau: prevent undefined behavior in nouveau_pushbuf_reloc with gcc-4.8
    
    Reported-by: ronald645@gmail.com
    Bisected-by (gcc): Andreas Radke <a.radke@arcor.de>
    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71116
    Signed-off-by: Maarten Lankhorst <maarten.lankhorst@canonical.com>

diff --git a/nouveau/pushbuf.c b/nouveau/pushbuf.c
index 0fd0c47..4f77881 100644
--- a/nouveau/pushbuf.c
+++ b/nouveau/pushbuf.c
@@ -739,7 +739,8 @@ void
 nouveau_pushbuf_reloc(struct nouveau_pushbuf *push, struct nouveau_bo *bo,
 		      uint32_t data, uint32_t flags, uint32_t vor, uint32_t tor)
 {
-	*push->cur++ = pushbuf_krel(push, bo, data, flags, vor, tor);
+	*push->cur = pushbuf_krel(push, bo, data, flags, vor, tor);
+	push->cur++;
 }
 
 int


Reply to: