1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

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

View File

@ -441,9 +441,9 @@ void _glfwDeleteEventQueue(EventQueue* queue)
node = node_next;
}
}
free(queue);
free(queue);
}
}
//////////////////////////////////////////////////////////////////////////