Move redundant free to where its not redundant.

This commit is contained in:
BrandonSchaefer
2014-11-12 09:41:12 -08:00
committed by Camilla Berglund
parent a71a52ddd6
commit e778b83667
+2 -2
View File
@@ -441,9 +441,9 @@ void _glfwDeleteEventQueue(EventQueue* queue)
node = node_next;
}
}
free(queue);
free(queue);
}
}
//////////////////////////////////////////////////////////////////////////