提交 ad1a897e 编写于 作者: T ths

block-vvfat.c - fix is_free predicate, by Tristan Gingold.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4815 c046a42c-6fe2-441c-8c8c-71466251a162
上级 a982b531
...@@ -454,8 +454,7 @@ static inline direntry_t* create_long_filename(BDRVVVFATState* s,const char* fil ...@@ -454,8 +454,7 @@ static inline direntry_t* create_long_filename(BDRVVVFATState* s,const char* fil
static char is_free(const direntry_t* direntry) static char is_free(const direntry_t* direntry)
{ {
/* return direntry->name[0]==0 ; */ return direntry->name[0]==0xe5 || direntry->name[0]==0x00;
return direntry->attributes == 0 || direntry->name[0]==0xe5;
} }
static char is_volume_label(const direntry_t* direntry) static char is_volume_label(const direntry_t* direntry)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册