diff options
author | Vinson Lee <[email protected]> | 2010-01-01 17:25:16 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-01-01 17:25:16 -0800 |
commit | 2c64e4c50eaf7c3dd0cc95edbca1d31316baac3a (patch) | |
tree | 9700408123bcb1730411f4e267ff4472b63d747c /src/glu | |
parent | 64a19610112efdbde9daa81b742a081832d186e9 (diff) |
glu/sgi: Initialize member of struct Dlnode.
Diffstat (limited to 'src/glu')
-rw-r--r-- | src/glu/sgi/libnurbs/internals/displaylist.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glu/sgi/libnurbs/internals/displaylist.h b/src/glu/sgi/libnurbs/internals/displaylist.h index 22cbec37870..d009a42513e 100644 --- a/src/glu/sgi/libnurbs/internals/displaylist.h +++ b/src/glu/sgi/libnurbs/internals/displaylist.h @@ -59,6 +59,7 @@ Dlnode::Dlnode( PFVS _work, void *_arg, PFVS _cleanup ) work = _work; arg = _arg; cleanup = _cleanup; + next = 0; } class DisplayList { |