fix history file open

This commit is contained in:
CatsSky 2022-05-14 21:32:22 +08:00
parent 8b5260dbc1
commit 66e271245d
No known key found for this signature in database
GPG Key ID: 1B10437ED1BAB130

View File

@ -113,18 +113,10 @@ void rose_load_changed_callback(WebKitWebView *webview,
const char *uri = webkit_web_view_get_uri(webview);
char *cookiefile = calloc(1, sizeof(char) * (strlen(options[CACHE]) + 32) + 1);
sprintf(cookiefile, "%s/history", options[CACHE]);
FILE *f = fopen(cookiefile, "r");
if (!f) {
fclose(f);
FILE *f = fopen(cookiefile, "w");
fclose(f);
} else {
fclose(f);
}
FILE *cookie = fopen(cookiefile, "a");
fprintf(f, "%s\n", uri);
fprintf(cookie, "%s\n", uri);
fclose(cookie);
free(cookiefile);
}