mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 02:32:47 +00:00
Add comment that range checking is already done at upper level
Kill snprintf left in collate.c from previous backout Should go in 2.2
This commit is contained in:
parent
942c84aabd
commit
af155bdff3
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=20961
@ -24,7 +24,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: collate.c,v 1.9 1996/11/26 02:49:31 ache Exp $
|
||||
* $Id: collate.c,v 1.10 1996/12/16 17:32:56 joerg Exp $
|
||||
*/
|
||||
|
||||
#include <rune.h>
|
||||
@ -73,8 +73,11 @@ __collate_load_tables(encoding)
|
||||
__collate_load_error = save_load_error;
|
||||
return -1;
|
||||
}
|
||||
(void) snprintf(buf, sizeof buf, "%s/%s/LC_COLLATE",
|
||||
_PathLocale, encoding);
|
||||
/* Range checking already done at upper level caller */
|
||||
(void) strcpy(buf, _PathLocale);
|
||||
(void) strcat(buf, "/");
|
||||
(void) strcat(buf, encoding);
|
||||
(void) strcat(buf, "/LC_COLLATE");
|
||||
if ((fp = fopen(buf, "r")) == NULL) {
|
||||
__collate_load_error = save_load_error;
|
||||
return -1;
|
||||
|
@ -85,6 +85,7 @@ _xpg4_setrunelocale(encoding)
|
||||
|
||||
if (!_PathLocale)
|
||||
return(EFAULT);
|
||||
/* Range checking already done at upper level caller */
|
||||
(void) strcpy(name, _PathLocale);
|
||||
(void) strcat(name, "/");
|
||||
(void) strcat(name, encoding);
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
#ifdef LIBC_RCS
|
||||
static const char rcsid[] =
|
||||
"$Id: strftime.c,v 1.11 1996/07/19 15:17:44 wollman Exp $";
|
||||
"$Id: strftime.c,v 1.12 1996/11/26 02:52:52 ache Exp $";
|
||||
#endif
|
||||
|
||||
#ifndef lint
|
||||
@ -509,6 +509,7 @@ __time_load_locale(const char *name)
|
||||
|
||||
if (!_PathLocale)
|
||||
goto no_locale;
|
||||
/* Range checking already done at upper level caller */
|
||||
strcpy(filename, _PathLocale);
|
||||
strcat(filename, "/");
|
||||
strcat(filename, name);
|
||||
|
Loading…
Reference in New Issue
Block a user