Mercurial > sdl-ios-xcode
changeset 4178:2dc6c9f343c8 SDL-1.2
Fixed dynamic loading on Windows CE
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 07 May 2009 12:03:51 +0000 |
parents | 04a75cf3ff1c |
children | d7294b7c732d |
files | src/loadso/win32/SDL_sysloadso.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/loadso/win32/SDL_sysloadso.c Mon Apr 27 10:33:21 2009 +0000 +++ b/src/loadso/win32/SDL_sysloadso.c Thu May 07 12:03:51 2009 +0000 @@ -93,7 +93,7 @@ wchar_t *name_t = SDL_malloc((length + 1) * sizeof(wchar_t)); wchar_t *errbuf_t = SDL_malloc(512 * sizeof(wchar_t)); - MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, name, -1, name_t, length); + MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, name, -1, name_t, length+1); symbol = (void *)GetProcAddress((HMODULE)handle, name_t); if ( symbol == NULL ) {