From 4eaa5467cfabac872a9f587ed5ec8cd48c0e06d4 Mon Sep 17 00:00:00 2001 From: cjp Date: Sun, 29 Jul 2001 16:03:07 +0000 Subject: [PATCH] Fixed bug list code. git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@13 7f0cb862-5218-0410-a997-914c9d46530a --- freeglut/freeglut/freeglut-1.3/freeglut_structure.c | 1 + 1 file changed, 1 insertion(+) diff --git a/freeglut/freeglut/freeglut-1.3/freeglut_structure.c b/freeglut/freeglut/freeglut-1.3/freeglut_structure.c index 79b3545..2b16caa 100644 --- a/freeglut/freeglut/freeglut-1.3/freeglut_structure.c +++ b/freeglut/freeglut/freeglut-1.3/freeglut_structure.c @@ -596,6 +596,7 @@ void fgListAppend(SFG_List *list, SFG_Node *node) if ( (ln = list->Last) != NULL ) { + ln->Next = node; node->Prev = ln; } else