cookies: replace sprintf with snprintf

Use snprintf instead of sprintf.

No good reason beyond paranoia and Coverity complaining about it.
In a very theoretical, construed case the adds might overflow
or the environment might change in-between the getenv calls.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@35307 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2012-10-31 19:01:55 +00:00 committed by wm4
parent 7d5a6b9b02
commit 86a5b7a4cc
1 changed files with 7 additions and 5 deletions

View File

@ -207,11 +207,13 @@ static struct cookie_list_type *load_cookies(void)
if (dir) {
while ((ent = readdir(dir)) != NULL) {
if ((ent->d_name)[0] != '.') {
buf = malloc(strlen(getenv("HOME")) +
sizeof("/.mozilla/default/") +
strlen(ent->d_name) + sizeof("cookies.txt") + 1);
sprintf(buf, "%s/.mozilla/default/%s/cookies.txt",
getenv("HOME"), ent->d_name);
const char *home = getenv("HOME");
unsigned len = strlen(home) +
sizeof("/.mozilla/default/") +
strlen(ent->d_name) + sizeof("cookies.txt") + 1;
buf = malloc(len);
snprintf(buf, len, "%s/.mozilla/default/%s/cookies.txt",
home, ent->d_name);
list = load_cookies_from(buf, list);
free(buf);
}