]> git.sur5r.net Git - i3/i3/commitdiff
Use sstrdup() instead of strdup()
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 22 Sep 2010 21:10:49 +0000 (23:10 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 22 Sep 2010 21:11:51 +0000 (23:11 +0200)
src/config.c

index cd88da3d104a8dfb79199c2b8894ceb478696376..425a995ee9ea7ec3ff90967a5f72d8868b85f065 100644 (file)
@@ -256,7 +256,7 @@ static char *get_config_path() {
         if ((xdg_config_dirs = getenv("XDG_CONFIG_DIRS")) == NULL)
                 xdg_config_dirs = "/etc/xdg";
 
-        char *buf = strdup(xdg_config_dirs);
+        char *buf = sstrdup(xdg_config_dirs);
         char *tok = strtok(buf, ":");
         while (tok != NULL) {
                 tok = resolve_tilde(tok);
@@ -277,7 +277,7 @@ static char *get_config_path() {
         if (path_exists(config_path))
                 return config_path;
 
-        config_path = strdup(SYSCONFDIR "/i3/config");
+        config_path = sstrdup(SYSCONFDIR "/i3/config");
         if (!path_exists(config_path))
                 die("Neither $XDG_CONFIG_HOME/i3/config, nor "
                     "$XDG_CONFIG_DIRS/i3/config, nor ~/.i3/config nor "