Compute-file-or-string-md5 icon indicating copy to clipboard operation
Compute-file-or-string-md5 copied to clipboard

Resolve the BUG that cannot fully read files in the MinGW environment

Open mukuss opened this issue 6 years ago • 3 comments

解决一些小问题

mukuss avatar Nov 06 '18 09:11 mukuss

加了编译宏后,我测试了一下,在mac上有问题, 可以改成 #ifdef WIN32 fd = open(file_path, O_RDONLY | O_BINARY); #else fd = open(file_path, O_RDONLY); #endif 可以帮我测试一下这样改在 MinGW 环境有问题吗 如果没问题,请重新提交一个 pull request

chinaran avatar Nov 06 '18 10:11 chinaran

依照前一个建议修改,在MinGW环境下测试没有问题,已提交

mukuss avatar Nov 08 '18 14:11 mukuss

Ctrl+C Ctrl+V

Lizo233 avatar Jan 28 '24 13:01 Lizo233