Compute-file-or-string-md5
Compute-file-or-string-md5 copied to clipboard
Resolve the BUG that cannot fully read files in the MinGW environment
解决一些小问题
加了编译宏后,我测试了一下,在mac上有问题, 可以改成 #ifdef WIN32 fd = open(file_path, O_RDONLY | O_BINARY); #else fd = open(file_path, O_RDONLY); #endif 可以帮我测试一下这样改在 MinGW 环境有问题吗 如果没问题,请重新提交一个 pull request
依照前一个建议修改,在MinGW环境下测试没有问题,已提交
Ctrl+C Ctrl+V