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 changed files with 2 additions and 2 deletions

View File

@ -441,10 +441,10 @@ void _glfwDeleteEventQueue(EventQueue* queue)
node = node_next;
}
}
free(queue);
}
}
//////////////////////////////////////////////////////////////////////////
////// GLFW platform API //////