diff src/video/wincommon/SDL_wingl.c @ 1379:c0a74f199ecf

Use only safe string functions
author Sam Lantinga <slouken@libsdl.org>
date Sun, 19 Feb 2006 23:46:34 +0000
parents 19418e4422cb
children d910939febfa
line wrap: on
line diff
--- a/src/video/wincommon/SDL_wingl.c	Sun Feb 19 23:38:57 2006 +0000
+++ b/src/video/wincommon/SDL_wingl.c	Sun Feb 19 23:46:34 2006 +0000
@@ -551,7 +551,7 @@
 	}
 
 	this->gl_config.dll_handle = handle;
-	SDL_strcpy(this->gl_config.driver_path, path);
+	SDL_strlcpy(this->gl_config.driver_path, path, SDL_arraysize(this->gl_config.driver_path));
 	this->gl_config.driver_loaded = 1;
 	return 0;
 }