diff options
author | Ian Romanick <[email protected]> | 2014-01-21 16:52:42 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2014-01-24 13:43:10 -0800 |
commit | c11d76c51a29ed4fe02a8c46ba9fd64083f155ed (patch) | |
tree | 5c3a48a7d782fdbc69e8f02800faf28f379d932a /src/mesa/main | |
parent | a44554870ef4d5bc42c4b34aa1ce8d6979ddd92c (diff) |
mesa: Increment the list pointer while freeing instruction data
Since the list pointer was never incremented when a OPCODE_PIXEL_MAP
opcode was encountered, the data for the instruction would get freed
over and over and over... resulting in a crash.
Fixes gl-1.0-beginend-coverage.
Signed-off-by: Ian Romanick <[email protected]>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=72214
Reviewed-by: Brian Paul <[email protected]>
Cc: Lu Ha <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/dlist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index cb40ff4db88..08943c9f9b0 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -767,6 +767,7 @@ _mesa_delete_list(struct gl_context *ctx, struct gl_display_list *dlist) break; case OPCODE_PIXEL_MAP: free(get_pointer(&n[3])); + n += InstSize[n[0].opcode]; break; case OPCODE_CONTINUE: |