void-packages/srcpkgs/mp3val/patches/fix-open-mode.patch
Jürgen Buchmüller 215a8a765c mp3val: fix build
open(2) with O_CREAT requires mode parametet.
2021-01-16 12:21:41 +01:00

11 lines
417 B
Diff

--- crossapi.cpp 2009-06-25 22:14:03.000000000 +0200
+++ 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;