Fixed bug list code.
authorChristopher John Purnell <cjp@lost.org.uk>
Sun, 29 Jul 2001 16:03:07 +0000 (16:03 +0000)
committerChristopher John Purnell <cjp@lost.org.uk>
Sun, 29 Jul 2001 16:03:07 +0000 (16:03 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@13 7f0cb862-5218-0410-a997-914c9d46530a

freeglut-1.3/freeglut_structure.c

index 79b3545..2b16caa 100644 (file)
@@ -596,6 +596,7 @@ void fgListAppend(SFG_List *list, SFG_Node *node)
 
     if ( (ln = list->Last) != NULL )
     {
+        ln->Next = node;
         node->Prev = ln;
     }
     else