wok annotate libfm/stuff/empty-file.patch @ rev 24924

Add as & asxxxx
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Apr 13 10:27:34 2022 +0000 (2022-04-13)
parents
children
rev   line source
al@17295 1 --- src/base/fm-mime-type.c.orig
al@17295 2 +++ src/base/fm-mime-type.c
al@17295 3 @@ -156,10 +156,10 @@
al@17295 4 if(uncertain)
al@17295 5 {
al@17295 6 int fd, len;
al@17295 7 - if(pstat->st_size == 0) /* empty file = text file with 0 characters in it. */
al@17295 8 + if(pstat->st_size == 0) /* empty file */
al@17295 9 {
al@17295 10 g_free(type);
al@17295 11 - return fm_mime_type_from_name("text/plain");
al@17295 12 + return fm_mime_type_from_name("application/x-zerosize");
al@17295 13 }
al@17295 14 fd = open(file_path, O_RDONLY);
al@17295 15 if(fd >= 0)