Fixed crasher bug.

Now PlugletEngine do not crache mozilla
in  case of missing jvm


git-svn-id: svn://10.0.0.236/trunk@60166 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
idk%eng.sun.com
2000-02-09 00:34:54 +00:00
parent 1cc83d0375
commit 818eb6a8db
3 changed files with 18 additions and 9 deletions

View File

@@ -21,7 +21,7 @@ List::List() {
List::~List() {
ListNode *tmp;
for(ListNode * current=head;!current;tmp = current,current = current->next, delete tmp)
for(ListNode * current=head; current != NULL ;tmp = current,current = current->next, delete tmp)
;
}