1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-01 23:00:41 +00:00

mplayer: factor config dir creation

Move it into its own function.
This commit is contained in:
wm4 2013-04-01 22:47:30 +02:00
parent 5165e19a23
commit 497ec230bf

View File

@ -608,6 +608,16 @@ static MP_NORETURN void exit_player(struct MPContext *mpctx,
exit(rc);
}
static void mk_config_dir(char *subdir)
{
void *tmp = talloc_new(NULL);
char *confdir = talloc_steal(tmp, mp_find_user_config_file(""));
if (subdir)
confdir = mp_path_join(tmp, bstr0(confdir), bstr0(subdir));
mkdir(confdir, 0777);
talloc_free(tmp);
}
#include "cfg-mplayer.h"
static int cfg_include(struct m_config *conf, char *filename)
@ -626,11 +636,7 @@ static bool parse_cfgfiles(struct MPContext *mpctx, m_config_t *conf)
return true;
if (!m_config_parse_config_file(conf, MPLAYER_CONFDIR "/mpv.conf") < 0)
return false;
if ((conffile = mp_find_user_config_file("")) == NULL)
mp_tmsg(MSGT_CPLAYER, MSGL_WARN, "Cannot find HOME directory.\n");
else {
mkdir(conffile, 0777);
talloc_free(conffile);
mk_config_dir(NULL);
if ((conffile = mp_find_user_config_file("config")) == NULL)
mp_tmsg(MSGT_CPLAYER, MSGL_ERR,
"mp_find_user_config_file(\"config\") problem\n");
@ -646,7 +652,6 @@ static bool parse_cfgfiles(struct MPContext *mpctx, m_config_t *conf)
return false;
talloc_free(conffile);
}
}
return true;
}