void-packages/srcpkgs/mp3val/patches/fix-open-mode.patch

12 lines
421 B
Diff

--- a/crossapi.cpp 2009-06-25 22:14:03.000000000 +0200
+++ b/crossapi.cpp 2021-01-16 12:20:29.220265744 +0100
@@ -241,7 +241,7 @@
//Moving failed due to different logical drives of source and destination. Let's copy:
id=open(szOldName,O_RDONLY);
if(id==-1) return 0;
- od=open(szNewName,O_WRONLY|O_CREAT|O_TRUNC);
+ od=open(szNewName,O_WRONLY|O_CREAT|O_TRUNC,0666);
if(od==-1) {
close(id);
return 0;