diff options
author | Brian Paul <[email protected]> | 2005-06-26 20:08:23 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-06-26 20:08:23 +0000 |
commit | 845f2a73506837e4ec4e0cf8bb99a2d63bdaf1b4 (patch) | |
tree | 4c22159c078ef6bb47623d6ee49dee76490f4493 /src/mesa/main/get_gen.py | |
parent | f8582b6c1f2403869d21bf57093f644284139802 (diff) |
fix for-loop in _mesa_GetDouble to avoid out of bounds memory read
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index 8259972daa4..9f1be8b9350 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -1178,7 +1178,7 @@ _mesa_GetDoublev( GLenum pname, GLdouble *params ) _mesa_GetFloatv(pname, values); - for (i = 0; values[i] != magic && i < 16; i++) + for (i = 0; i < 16 && values[i] != magic; i++) params[i] = (GLdouble) values[i]; } """ |