diff options
author | brianp <brianp> | 2000-09-01 17:51:10 +0000 |
---|---|---|
committer | brianp <brianp> | 2000-09-01 17:51:10 +0000 |
commit | bb54ac28aec6690fc84c0a2b940e8ae2186aab8d (patch) | |
tree | 3a46ba913b5206c61e020fa14ccf2410aa6369de | |
parent | cfd06dfde59770962b5f4c8d857f0b8204855d62 (diff) |
fixed uninitialized next-pointer in fxTMNewRangeNode()
-rw-r--r-- | xc/lib/GL/mesa/src/drv/tdfx/fxtexman.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xc/lib/GL/mesa/src/drv/tdfx/fxtexman.c b/xc/lib/GL/mesa/src/drv/tdfx/fxtexman.c index cca5b3c7d..037706292 100644 --- a/xc/lib/GL/mesa/src/drv/tdfx/fxtexman.c +++ b/xc/lib/GL/mesa/src/drv/tdfx/fxtexman.c @@ -133,6 +133,7 @@ fxTMNewRangeNode(fxMesaContext fxMesa, FxU32 start, FxU32 end) } result->startAddr = start; result->endAddr = end; + result->next = NULL; return result; } |