浏览代码

'light_isWritable' shouldn't truncate file contents

Abdullah ibn Nadjo 7 年前
父节点
当前提交
12e81769d9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/helpers.c

+ 1
- 1
src/helpers.c 查看文件

182
 
182
 
183
 LIGHT_BOOL light_isWritable(char const * filename)
183
 LIGHT_BOOL light_isWritable(char const * filename)
184
 {
184
 {
185
-  FILE* fileHandle = fopen(filename, "w");
185
+  FILE* fileHandle = fopen(filename, "r+");
186
 
186
 
187
   if(!fileHandle)
187
   if(!fileHandle)
188
   {
188
   {