From 494c56475f04f0753d1ef7b8126612d3017df861 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sat, 21 Oct 2006 23:31:34 +0000 Subject: (svn r6884) -Codechange: Add strict bounds checking in string formatting system. The last parameter should point to the end of the buffer (eg lastof(buf)) Courtesy of Tron. --- functions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functions.h') diff --git a/functions.h b/functions.h index a7237a778..415f7a0cc 100644 --- a/functions.h +++ b/functions.h @@ -140,7 +140,7 @@ void InitializeLandscapeVariables(bool only_constants); /* misc.c */ bool IsCustomName(StringID id); void DeleteName(StringID id); -char *GetName(int id, char *buff); +char *GetName(char *buff, StringID id, const char* last); // AllocateNameUnique also tests if the name used is not used anywere else // and if it is used, it returns an error. -- cgit v1.2.3-54-g00ecf