Fixed memory leak in spnav_remove_events. Bug: 2844481

git-svn-id: svn+ssh://svn.code.sf.net/p/spacenav/code/trunk/libspnav@117 ef983eb1-d774-4af8-acfd-baaf7b16a646
pull/2/head
John Tsiombikas 2011-06-06 13:01:50 +00:00
rodzic 566fd3485a
commit 629d992df5
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -481,6 +481,7 @@ int spnav_remove_events(int type)
free(tmplist);
tmplist = node;
}
free(tmplist);
return rm_count;
}