Fixed initialization error if no ~/.local/share directrory
This commit is contained in:
parent
4582f78abd
commit
9febe996db
@ -1,6 +1,8 @@
|
|||||||
#ifndef _HISTORY_H
|
#ifndef _HISTORY_H
|
||||||
#define _HISTORY_H
|
#define _HISTORY_H
|
||||||
|
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
void append_to_history(char *line);
|
void append_to_history(char *line);
|
||||||
void clear_sub_history();
|
void clear_sub_history();
|
||||||
char *previous_hist_entry(char *line);
|
char *previous_hist_entry(char *line);
|
||||||
|
@ -212,6 +212,17 @@ void open_history_file()
|
|||||||
data_path = strcat(data_path, "/.local/share/");
|
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 = realloc(data_path, strlen(data_path) + strlen(".mshistory") + 1);
|
||||||
data_path = strcat(data_path, ".mshistory");
|
data_path = strcat(data_path, ".mshistory");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user