Mercurial > sdl-ios-xcode
diff src/video/bwindow/SDL_sysvideo.cc @ 1572:3a8920cc822b
*** empty log message ***
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 21 Mar 2006 16:04:44 +0000 |
parents | 8d9bb0cf2c2a |
children | e49147870aac c121d94672cb 678576473849 |
line wrap: on
line diff
--- a/src/video/bwindow/SDL_sysvideo.cc Tue Mar 21 10:38:41 2006 +0000 +++ b/src/video/bwindow/SDL_sysvideo.cc Tue Mar 21 16:04:44 2006 +0000 @@ -639,7 +639,7 @@ if (get_image_symbol((image_id)cookie,"glBegin",B_SYMBOL_TYPE_ANY,&location) == B_OK) { _this->gl_config.dll_handle = (void*)cookie; _this->gl_config.driver_loaded = 1; - SDL_strncpy(_this->gl_config.driver_path, "libGL.so", sizeof(_this->gl_config.driver_path)-1); + SDL_strlcpy(_this->gl_config.driver_path, "libGL.so", SDL_arraysize(_this->gl_config.driver_path)); } } } @@ -667,7 +667,7 @@ if ((_this->gl_config.dll_handle = (void*)load_add_on(path)) != (void*)B_ERROR) { _this->gl_config.driver_loaded = 1; - SDL_strncpy(_this->gl_config.driver_path, path, sizeof(_this->gl_config.driver_path)-1); + SDL_strlcpy(_this->gl_config.driver_path, path, SDL_arraysize(_this->gl_config.driver_path)); }*/ } @@ -676,7 +676,7 @@ } else { _this->gl_config.dll_handle = NULL; _this->gl_config.driver_loaded = 0; - SDL_strcpy(_this->gl_config.driver_path, ""); + *_this->gl_config.driver_path = '\0'; return -1; } }