mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-11-21 20:47:19 +01:00
0e45984fa0
The internal function SDL_EGL_LoadLibrary() did not delete and remove a mostly uninitialized data structure if loading the library first failed. A later try to use EGL then skipped initialization and assumed it was previously successful because the data structure now already existed. This led to at least one crash in the internal function SDL_EGL_ChooseConfig() because a NULL pointer was dereferenced to make a call to eglBindAPI().
26 lines
545 B
C
26 lines
545 B
C
/**
|
|
* \file mischelper.c
|
|
*
|
|
* Header with miscellaneous helper functions.
|
|
*/
|
|
|
|
#ifndef _SDL_visualtest_mischelper_h
|
|
#define _SDL_visualtest_mischelper_h
|
|
|
|
/* Set up for C function definitions, even when using C++ */
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* Stores a 32 digit hexadecimal string representing the MD5 hash of the
|
|
* string \c str in \c hash.
|
|
*/
|
|
void SDLVisualTest_HashString(char* str, char hash[33]);
|
|
|
|
/* Ends C function definitions when using C++ */
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _SDL_visualtest_mischelper_h */ |