http://bugs.winehq.org/show_bug.cgi?id=58635
Bug ID: 58635 Summary: CapCut crashes upon launch Product: Wine Version: 10.13 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: ihatemylife0025@gmail.com Distribution: ---
Created attachment 79192 --> http://bugs.winehq.org/attachment.cgi?id=79192 Logs from running CapCut on a new wineprefix
I've tried every workaround I could find but CapCut (version 6.9.0, from here: https://lf16-capcut.faceulv.com/obj/capcutpc-packages-us/packages/CapCut_6_9...) crashes ~10 seconds from launch. Things I've tried: Installing on a Windows PC and copying the files. No difference. Enabling DXVK. No difference. Using the experimental xe driver for my GPU. No difference. Creating a new prefix. No difference Using the stable 10.0 version. No difference Using CapCut beta version 7.0.0. No difference Installing corefonts with winetricks. No difference
I'm using wine version 10.13 from the official fedora 42 repository
GPU: 0000:00:02.0 VGA compatible controller: Intel Corporation TigerLake-LP GT2 [Iris Xe Graphics] (rev 01) Subsystem: Lenovo Device 3f9c Kernel driver in use: i915 Kernel modules: i915, xe CPU: 11th Gen Intel(R) Core(TM) i5-1135G7 (8) @ 4.20 GHz
RAM: 20GB (16+4) DDR4 3200mhz
Laptop Model: 82H8 (IdeaPad 3 15ITL6)
Kernel Version: Linux 6.15.10-200.fc42.x86_64
Distribution: Fedora 42 KDE Plasma Edition
http://bugs.winehq.org/show_bug.cgi?id=58635
ihatemylife0025@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Distribution|--- |Fedora
http://bugs.winehq.org/show_bug.cgi?id=58635
ihatemylife0025@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #79192|0 |1 is obsolete| |
--- Comment #1 from ihatemylife0025@gmail.com --- Created attachment 79193 --> http://bugs.winehq.org/attachment.cgi?id=79193 More detailed log
http://bugs.winehq.org/show_bug.cgi?id=58635
--- Comment #2 from ihatemylife0025@gmail.com --- Created attachment 79194 --> http://bugs.winehq.org/attachment.cgi?id=79194 Log with DXVK installed
http://bugs.winehq.org/show_bug.cgi?id=58635
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |iphlpapi Summary|CapCut crashes upon launch |CapCut crashes upon launch, | |needs unimplemented | |function | |IPHLPAPI.DLL.SetPerTcp6Conn | |ectionEStats
http://bugs.winehq.org/show_bug.cgi?id=58635
Louis Lenders xerox.xerox2000x@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever confirmed|0 |1 CC| |xerox.xerox2000x@gmail.com
--- Comment #3 from Louis Lenders xerox.xerox2000x@gmail.com --- Confirming.
Steps to reproduce:
mkdir -p ~/.wine/drive_c/users/***your_name***/AppData/Local/CapCut/User\ Data
(to work around https://bugs.winehq.org/show_bug.cgi?id=58636)
I'll send patch below, next problem is:
0688:fixme:iphlpapi:SetPerTcp6ConnectionEStats (row 000018D80026B9A4, state 3, r w 00007F6980A4F508, version 0, size 1, offset 0): stub wine: Call from 00006FFFFFFA2E95 to unimplemented function IPHLPAPI.DLL.GetPerTcp6ConnectionEStats, aborting
Patch:
diff --git a/dlls/iphlpapi/iphlpapi.spec b/dlls/iphlpapi/iphlpapi.spec index ed2214c99ce..f936d7d679d 100644 --- a/dlls/iphlpapi/iphlpapi.spec +++ b/dlls/iphlpapi/iphlpapi.spec @@ -285,7 +285,7 @@ @ stub SetIpStatsToStack @ stdcall SetIpTTL( long ) #@ stub SetNetworkInformation -#@ stub SetPerTcp6ConnectionEStats +@ stdcall SetPerTcp6ConnectionEStats( ptr long ptr long long long ) #@ stub SetPerTcp6ConnectionStats @ stdcall SetPerTcpConnectionEStats( ptr long ptr long long long ) #@ stub SetPerTcpConnectionStats diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c index 595f499c36e..bd2f5da7fe6 100644 --- a/dlls/iphlpapi/iphlpapi_main.c +++ b/dlls/iphlpapi/iphlpapi_main.c @@ -4143,6 +4143,16 @@ DWORD WINAPI SetPerTcpConnectionEStats(PMIB_TCPROW row, TCP_ESTATS_TYPE state, P return ERROR_NOT_SUPPORTED; }
+/****************************************************************** + * SetPerTcp6ConnectionEStats (IPHLPAPI.@) + */ +DWORD WINAPI SetPerTcp6ConnectionEStats(MIB_TCP6ROW *row, TCP_ESTATS_TYPE state, BYTE *rw, + ULONG version, ULONG size, ULONG offset) +{ + FIXME("(row %p, state %d, rw %p, version %lu, size %lu, offset %lu): stub\n", + row, state, rw, version, size, offset); + return ERROR_NOT_SUPPORTED; +}
/****************************************************************** * UnenableRouter (IPHLPAPI.@) diff --git a/include/iphlpapi.h b/include/iphlpapi.h index 84b9b7db34c..96239dff37e 100644 --- a/include/iphlpapi.h +++ b/include/iphlpapi.h @@ -80,6 +80,7 @@ IPHLPAPI_DLL_LINKAGE DWORD WINAPI SetIpForwardEntry(PMIB_IPFORWARDROW pRoute); IPHLPAPI_DLL_LINKAGE DWORD WINAPI DeleteIpForwardEntry(PMIB_IPFORWARDROW pRoute); IPHLPAPI_DLL_LINKAGE DWORD WINAPI SetIpStatistics(PMIB_IPSTATS pIpStats); IPHLPAPI_DLL_LINKAGE DWORD WINAPI SetPerTcpConnectionEStats(MIB_TCPROW *row, TCP_ESTATS_TYPE state, BYTE *rw, ULONG version, ULONG size, ULONG offset); +IPHLPAPI_DLL_LINKAGE DWORD WINAPI SetPerTcp6ConnectionEStats(MIB_TCP6ROW *row, TCP_ESTATS_TYPE state, BYTE *rw, ULONG version, ULONG size, ULONG offset); IPHLPAPI_DLL_LINKAGE DWORD WINAPI SetIpTTL(UINT nTTL); IPHLPAPI_DLL_LINKAGE DWORD WINAPI CreateIpNetEntry(PMIB_IPNETROW pArpEntry); IPHLPAPI_DLL_LINKAGE DWORD WINAPI SetIpNetEntry(PMIB_IPNETROW pArpEntry);
http://bugs.winehq.org/show_bug.cgi?id=58635
Louis Lenders xerox.xerox2000x@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- URL| |https://lf16-capcut.faceulv | |.com/obj/capcutpc-packages- | |us/packages/CapCut_6_9_0_27 | |86_capcutpc_0_creatortool.e | |xe Keywords| |download, patch