https://bugs.winehq.org/show_bug.cgi?id=50337
Bug ID: 50337 Summary: 0009:fixme:setupapi:SetupAddToDiskSpaceListA : stub Product: Wine Version: unspecified Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: setupapi Assignee: wine-bugs@winehq.org Reporter: enorrmann@gmail.com Distribution: ---
Created attachment 68923 --> https://bugs.winehq.org/attachment.cgi?id=68923 carla vst3 bridge output
TRying to save a file from a vst3 plugin (Roland Zenology Pro)running in Carla via carla-bridge results in a message saying "The file could not be saved. Make sure the media is not write protected and that there is sufficient space on the device"
the terminal shows a "0009:fixme:setupapi:SetupAddToDiskSpaceListA : stub"
I checked that function and it returns FALSE... not sure why and if that is correct
https://bugs.winehq.org/show_bug.cgi?id=50337
Zebediah Figura z.figura12@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|0009:fixme:setupapi:SetupAd |Roland Zenology Pro (VST3 |dToDiskSpaceListA : stub |plugin) used with | |carla-bridge fails to save | |files CC| |z.figura12@gmail.com
--- Comment #1 from Zebediah Figura z.figura12@gmail.com --- What is the output of "wine --version"?
https://bugs.winehq.org/show_bug.cgi?id=50337
--- Comment #2 from emilio norrmann enorrmann@gmail.com --- (In reply to Zebediah Figura from comment #1)
What is the output of "wine --version"?
wine-5.0 (Ubuntu 5.0-3ubuntu1)
https://bugs.winehq.org/show_bug.cgi?id=50337
Zebediah Figura z.figura12@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Version|unspecified |5.0
https://bugs.winehq.org/show_bug.cgi?id=50337
--- Comment #3 from emilio norrmann enorrmann@gmail.com --- update: I made the following change
BOOL WINAPI SetupAddToDiskSpaceListA(HDSKSPC diskspace, PCSTR targetfile, LONGLONG filesize, UINT operation, PVOID reserved1, UINT reserved2) { FIXME(": stub\n"); //SetLastError(ERROR_CALL_NOT_IMPLEMENTED); // comment this return TRUE; // was FALSE }
and recompiled, solves this issue
compiled on ubuntu 20.10 with ./configure --enable-win64 wine-6.0-rc2-20-g04ddabfdff6
https://bugs.winehq.org/show_bug.cgi?id=50337
Zebediah Figura z.figura12@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Staged patchset| |https://github.com/wine-sta | |ging/wine-staging/tree/mast | |er/patches/setupapi-DiskSpa | |ceList Status|UNCONFIRMED |STAGED
--- Comment #4 from Zebediah Figura z.figura12@gmail.com --- Thanks for the report. It turns out there's an ancient wine-staging patch for this function (among others), that nobody knew the purpose of. So that's one more mystery solved.