wok-next view libfm/stuff/patches/empty-file.patch @ rev 20712

libtorrent: fix rtorrent building for non-64bit archs
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun May 27 12:13:53 2018 +0300 (2018-05-27)
parents 4688f12eea68
children
line source
1 --- a/src/base/fm-mime-type.c
2 +++ b/src/base/fm-mime-type.c
3 @@ -165,10 +165,10 @@
4 if(uncertain)
5 {
6 int fd, len;
7 - if(pstat->st_size == 0) /* empty file = text file with 0 characters in it. */
8 + if(pstat->st_size == 0) /* empty file */
9 {
10 g_free(type);
11 - return fm_mime_type_from_name("text/plain");
12 + return fm_mime_type_from_name("application/x-zerosize");
13 }
14 fd = open(file_path, O_RDONLY);
15 if(fd >= 0)