Fixed initialization error if no ~/.local/share directrory

This commit is contained in:
Dmitriy Shishkov 2020-07-18 18:06:48 +05:00
parent 4582f78abd
commit 9febe996db
2 changed files with 13 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#ifndef _HISTORY_H
#define _HISTORY_H
#include <sys/stat.h>
void append_to_history(char *line);
void clear_sub_history();
char *previous_hist_entry(char *line);

View File

@ -212,6 +212,17 @@ void open_history_file()
data_path = strcat(data_path, "/.local/share/");
}
struct stat st = {0};
if (stat(data_path, &st) < 0)
{
printf("No %s dir, tying to create\n", data_path);
char *buff = malloc(strlen("mkdir -p ") + strlen(data_path) + 1);
buff = strdup("mkdir -p ");
buff = strcat(buff, data_path);
system(buff);
}
data_path = realloc(data_path, strlen(data_path) + strlen(".mshistory") + 1);
data_path = strcat(data_path, ".mshistory");