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
+1 -1
View File
@@ -441,10 +441,10 @@ void _glfwDeleteEventQueue(EventQueue* queue)
node = node_next; node = node_next;
} }
}
free(queue); free(queue);
} }
}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
////// GLFW platform API ////// ////// GLFW platform API //////