mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-24 04:56:50 +03:00
And again
svn path=/trunk/netsurf/; revision=7607
This commit is contained in:
parent
e9e3649648
commit
abc3603feb
@ -976,6 +976,10 @@ bool selection_save_text(struct selection *s, const char *path)
|
||||
out = fopen(path, "w");
|
||||
if (out) {
|
||||
int res = fputs(result, out);
|
||||
if (res < 0) {
|
||||
LOG(("Warning: writing data failed"));
|
||||
}
|
||||
|
||||
res = fputs("\n", out);
|
||||
fclose(out);
|
||||
free(result);
|
||||
|
Loading…
Reference in New Issue
Block a user