Libravatar: refactor and fix leak on corner case
[claws.git] / src / plugins / libravatar / libravatar_cache.c
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2015 Hiroyuki Yamamoto and the Claws Mail Team
4  * Copyright (C) 2014-2015 Ricardo Mones
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include "libravatar_cache.h"
21 #include "utils.h"
22
23 gchar *libravatar_cache_init(const char *dirs[], gint start, gint end)
24 {
25         gchar *subdir, *rootdir;
26         int i;
27
28         rootdir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
29                                 LIBRAVATAR_CACHE_DIR, G_DIR_SEPARATOR_S,
30                                 NULL);
31         if (!is_dir_exist(rootdir)) {
32                 if (make_dir(rootdir) < 0) {
33                         g_warning("cannot create root directory %s\n", subdir);
34                         g_free(rootdir);
35                         return NULL;
36                 }
37         }
38         for (i = start; i <= end; ++i) {
39                 subdir = g_strconcat(rootdir, dirs[i], NULL);
40                 if (!is_dir_exist(subdir)) {
41                         if (make_dir(subdir) < 0) {
42                                 g_warning("cannot create directory %s\n", subdir);
43                                 g_free(subdir);
44                                 g_free(rootdir);
45                                 return NULL;
46                         }
47                 }
48                 g_free(subdir);
49         }
50
51         return rootdir;
52 }