Search Unity

Unity crashes using UMA, sending textrecipe through RPC call

Discussion in 'Scripting' started by Erisat, Jun 23, 2014.

  1. Erisat

    Erisat

    Joined:
    Jan 31, 2013
    Posts:
    88
    Alright this is odd. this works perfectly fine 90% of the time, but upon restarting unity, the problem reappears, and Unity (editor or standalone build) crashes. I am using UMA to generate characters, then i take the textrecipe for the character and send it over the network so that clients can load it. This is very annoying, and i can temporarily fix it just by commenting this section out, running the game, and then uncommenting the code, and poof it works again. I'm tired of having to do this every time i restart Unity, and I can't figure out why it's happening.
    I split the string into two parts, because unity rpcs can not send strings larger than 4095 bytes, so i just send two strings (a bit of a hackish workaround i guess) and then i reassemble the strings on the client side. The string length is always the same, as Ive been using the same account for testing over and over.

    I have narrowed it down to this section of code inside the method where i spawn players.
    Code (CSharp):
    1.  
    2. UMAAvatarBase avatar = PlayerGO.GetComponent<UMAAvatarBase>();
    3.                 UMATextRecipe asset = UnityEngine.ScriptableObject.CreateInstance<UMATextRecipe>();
    4.                 asset.Save(avatar.umaData.umaRecipe, avatar.context);
    5.                 string txt = asset.recipeString;
    6.                 int txt2Length = txt.Length - 4095;
    7.                 txt1 = txt.Substring(0, 4095);
    8.                 txt2 = txt.Substring(4095, txt2Length);
    9.                 UnityEngine.ScriptableObject.Destroy(asset);
    10.                 networkView.RPC("SetPlayerGO", RPCMode.OthersBuffered, OwnerPlayer, ViewID, PlayerGOName, txt1, txt2, position, rotation);
    11.  

    My error log:
    Code (CSharp):
    1.  
    2. Initialize engine version: 4.3.4f1 (e444f76e01cd)
    3. GfxDevice: creating device client; threaded=1
    4. Direct3D:
    5.     Version:  Direct3D 11.0 [level 10.0]
    6.     Renderer: NVIDIA GeForce 8400 GS     (ID=0x6e4)
    7.     Vendor:   NVIDIA
    8.     VRAM:     491 MB
    9. Begin MonoManager ReloadAssembly
    10. Platform assembly: C:\GAMEDIR\CLI\Local\Client_Data\Managed\UnityEngine.dll (this message is harmless)
    11. Loading C:\GAMEDIR\CLI\Local\Client_Data\Managed\UnityEngine.dll into Unity Child Domain
    12. Platform assembly: C:\GAMEDIR\CLI\Local\Client_Data\Managed\Assembly-CSharp-firstpass.dll (this message is harmless)
    13. Loading C:\GAMEDIR\CLI\Local\Client_Data\Managed\Assembly-CSharp-firstpass.dll into Unity Child Domain
    14. Platform assembly: C:\GAMEDIR\CLI\Local\Client_Data\Managed\Assembly-CSharp.dll (this message is harmless)
    15. Loading C:\GAMEDIR\CLI\Local\Client_Data\Managed\Assembly-CSharp.dll into Unity Child Domain
    16. Platform assembly: C:\GAMEDIR\CLI\Local\Client_Data\Managed\Assembly-UnityScript-firstpass.dll (this message is harmless)
    17. Loading C:\GAMEDIR\CLI\Local\Client_Data\Managed\Assembly-UnityScript-firstpass.dll into Unity Child Domain
    18. Platform assembly: C:\GAMEDIR\CLI\Local\Client_Data\Managed\Assembly-UnityScript.dll (this message is harmless)
    19. Loading C:\GAMEDIR\CLI\Local\Client_Data\Managed\Assembly-UnityScript.dll into Unity Child Domain
    20. Platform assembly: C:\GAMEDIR\CLI\Local\Client_Data\Managed\CloudSystem.Runtime.dll (this message is harmless)
    21. Loading C:\GAMEDIR\CLI\Local\Client_Data\Managed\CloudSystem.Runtime.dll into Unity Child Domain
    22. Platform assembly: C:\GAMEDIR\CLI\Local\Client_Data\Managed\LitJson.dll (this message is harmless)
    23. Loading C:\GAMEDIR\CLI\Local\Client_Data\Managed\LitJson.dll into Unity Child Domain
    24. Platform assembly: C:\GAMEDIR\CLI\Local\Client_Data\Managed\UMA.dll (this message is harmless)
    25. Loading C:\GAMEDIR\CLI\Local\Client_Data\Managed\UMA.dll into Unity Child Domain
    26. - Completed reload, in  0.083 seconds
    27. <RI> Initializing input.
    28.  
    29. <RI> Input initialized.
    30.  
    31. desktop: 1280x720 60Hz; virtual: 1280x720 at 0,0
    32. Platform assembly: C:\GAMEDIR\CLI\Local\Client_Data\Managed\System.Core.dll (this message is harmless)
    33. Platform assembly: C:\GAMEDIR\CLI\Local\Client_Data\Managed\System.dll (this message is harmless)
    34. Crash!!!
    35. SymInit: Symbol-SearchPath: '.;C:\GAMEDIR\CLI\Local;C:\GAMEDIR\CLI\Local;C:\Windows;C:\Windows\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 530, UserName: 'Mike'
    36. OS-Version: 6.1.7601 (Service Pack 1) 0x100-0x1
    37. C:\GAMEDIR\CLI\Local\Client.exe:Client.exe (000000013FDD0000), size: 15192064 (result: 0), SymType: '-exported-', PDB: 'C:\GAMEDIR\CLI\Local\Client.exe', fileVersion: 4.3.4.31067
    38. C:\Windows\SYSTEM32\ntdll.dll:ntdll.dll (0000000077180000), size: 1740800 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\ntdll.dll', fileVersion: 6.1.7601.18247
    39. C:\Windows\system32\kernel32.dll:kernel32.dll (0000000076F60000), size: 1175552 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\kernel32.dll', fileVersion: 6.1.7601.18409
    40. C:\Windows\system32\KERNELBASE.dll:KERNELBASE.dll (000007FEFCFE0000), size: 442368 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\KERNELBASE.dll', fileVersion: 6.1.7601.18409
    41. C:\Windows\system32\USER32.dll:USER32.dll (0000000077080000), size: 1024000 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\USER32.dll', fileVersion: 6.1.7601.17514
    42. C:\Windows\system32\GDI32.dll:GDI32.dll (000007FEFEF00000), size: 421888 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\GDI32.dll', fileVersion: 6.1.7601.18275
    43. C:\Windows\system32\LPK.dll:LPK.dll (000007FEFF390000), size: 57344 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\LPK.dll', fileVersion: 6.1.7601.18177
    44. C:\Windows\system32\USP10.dll:USP10.dll (000007FEFEAC0000), size: 823296 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\USP10.dll', fileVersion: 1.626.7601.18009
    45. C:\Windows\system32\msvcrt.dll:msvcrt.dll (000007FEFE730000), size: 651264 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\msvcrt.dll', fileVersion: 7.0.7601.17744
    46. C:\Windows\system32\VERSION.dll:VERSION.dll (000007FEFBDD0000), size: 49152 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\VERSION.dll', fileVersion: 6.1.7600.16385
    47. C:\Windows\system32\ole32.dll:ole32.dll (000007FEFEC50000), size: 2109440 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\ole32.dll', fileVersion: 6.1.7601.17514
    48. C:\Windows\system32\RPCRT4.dll:RPCRT4.dll (000007FEFE0F0000), size: 1232896 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\RPCRT4.dll', fileVersion: 6.1.7601.18205
    49. C:\Windows\system32\SHLWAPI.dll:SHLWAPI.dll (000007FEFE7D0000), size: 462848 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\SHLWAPI.dll', fileVersion: 6.1.7601.17514
    50. C:\Windows\system32\ADVAPI32.dll:ADVAPI32.dll (000007FEFE570000), size: 897024 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\ADVAPI32.dll', fileVersion: 6.1.7601.18247
    51. C:\Windows\SYSTEM32\sechost.dll:sechost.dll (000007FEFE550000), size: 126976 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\sechost.dll', fileVersion: 6.1.7600.16385
    52. C:\Windows\system32\SHELL32.dll:SHELL32.dll (000007FEFD360000), size: 14188544 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\SHELL32.dll', fileVersion: 6.1.7601.18429
    53. C:\Windows\system32\OPENGL32.dll:OPENGL32.dll (000007FEF3DA0000), size: 1167360 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\OPENGL32.dll', fileVersion: 6.1.7600.16385
    54. C:\Windows\system32\GLU32.dll:GLU32.dll (000007FEFA040000), size: 184320 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\GLU32.dll', fileVersion: 6.1.7600.16385
    55. C:\Windows\system32\DDRAW.dll:DDRAW.dll (000007FEF1470000), size: 987136 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\DDRAW.dll', fileVersion: 6.1.7600.16385
    56. C:\Windows\system32\DCIMAN32.dll:DCIMAN32.dll (000007FEFB8C0000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\DCIMAN32.dll', fileVersion: 6.1.7601.18177
    57. C:\Windows\system32\SETUPAPI.dll:SETUPAPI.dll (000007FEFEF70000), size: 1929216 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\SETUPAPI.dll', fileVersion: 6.1.7601.17514
    58. C:\Windows\system32\CFGMGR32.dll:CFGMGR32.dll (000007FEFD110000), size: 221184 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\CFGMGR32.dll', fileVersion: 6.1.7601.17514
    59. C:\Windows\system32\OLEAUT32.dll:OLEAUT32.dll (000007FEFE650000), size: 880640 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\OLEAUT32.dll', fileVersion: 6.1.7601.17676
    60. C:\Windows\system32\DEVOBJ.dll:DEVOBJ.dll (000007FEFD320000), size: 106496 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\DEVOBJ.dll', fileVersion: 6.1.7600.16385
    61. C:\Windows\system32\dwmapi.dll:dwmapi.dll (000007FEFB130000), size: 98304 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\dwmapi.dll', fileVersion: 6.1.7600.16385
    62. C:\Windows\system32\WINMM.dll:WINMM.dll (000007FEF8F20000), size: 241664 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WINMM.dll', fileVersion: 6.1.7600.16385
    63. C:\Windows\system32\WS2_32.dll:WS2_32.dll (000007FEFF440000), size: 315392 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WS2_32.dll', fileVersion: 6.1.7601.17514
    64. C:\Windows\system32\NSI.dll:NSI.dll (000007FEFF430000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\NSI.dll', fileVersion: 6.1.7600.16385
    65. C:\Windows\system32\IMM32.dll:IMM32.dll (000007FEFF3A0000), size: 188416 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\IMM32.dll', fileVersion: 6.1.7600.16385
    66. C:\Windows\system32\MSCTF.dll:MSCTF.dll (000007FEFE850000), size: 1085440 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MSCTF.dll', fileVersion: 6.1.7600.16385
    67. C:\Windows\system32\DNSAPI.dll:DNSAPI.dll (000007FEFC5E0000), size: 372736 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\DNSAPI.dll', fileVersion: 6.1.7601.17570
    68. C:\Windows\system32\IPHLPAPI.DLL:IPHLPAPI.DLL (000007FEFA4B0000), size: 159744 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\IPHLPAPI.DLL', fileVersion: 6.1.7601.17514
    69. C:\Windows\system32\WINNSI.DLL:WINNSI.DLL (000007FEFA5C0000), size: 45056 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WINNSI.DLL', fileVersion: 6.1.7600.16385
    70. C:\Windows\system32\WINHTTP.dll:WINHTTP.dll (000007FEFA980000), size: 462848 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WINHTTP.dll', fileVersion: 6.1.7601.17514
    71. C:\Windows\system32\webio.dll:webio.dll (000007FEFA910000), size: 409600 (result: 0), SymType: '-nosymbols-', PDB: 'C:\Windows\system32\webio.dll', fileVersion: 6.1.7601.17725
    72. C:\Windows\system32\HID.DLL:HID.DLL (000007FEFB1A0000), size: 45056 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\HID.DLL', fileVersion: 6.1.7600.16385
    73. C:\Windows\system32\MSACM32.dll:MSACM32.dll (000007FEFAA20000), size: 98304 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MSACM32.dll', fileVersion: 6.1.7600.16385
    74. C:\Windows\system32\apphelp.dll:apphelp.dll (000007FEFCE00000), size: 356352 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\apphelp.dll', fileVersion: 6.1.7601.17514
    75. C:\Windows\AppPatch\AppPatch64\AcGenral.DLL:AcGenral.DLL (000007FEF5140000), size: 331776 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\AppPatch\AppPatch64\AcGenral.DLL', fileVersion: 6.1.7601.18128
    76. C:\Windows\system32\SspiCli.dll:SspiCli.dll (000007FEFCDD0000), size: 151552 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\SspiCli.dll', fileVersion: 6.1.7601.18443
    77. C:\Windows\system32\sfc.dll:sfc.dll (0000000072850000), size: 12288 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\sfc.dll', fileVersion: 6.1.7600.16385
    78. C:\Windows\system32\sfc_os.DLL:sfc_os.DLL (000007FEF7310000), size: 65536 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\sfc_os.DLL', fileVersion: 6.1.7600.16385
    79. C:\Windows\system32\USERENV.dll:USERENV.dll (000007FEFC280000), size: 122880 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\USERENV.dll', fileVersion: 6.1.7601.17514
    80. C:\Windows\system32\profapi.dll:profapi.dll (000007FEFCF30000), size: 61440 (result: 0), SymType: '-nosymbols-', PDB: 'C:\Windows\system32\profapi.dll', fileVersion: 6.1.7600.16385
    81. C:\Windows\system32\MPR.dll:MPR.dll (000007FEF84F0000), size: 98304 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MPR.dll', fileVersion: 6.1.7600.16385
    82. C:\GAMEDIR\CLI\Local\Client_Data\Mono\mono.dll:mono.dll (000007FEECDF0000), size: 2985984 (result: 0), SymType: '-exported-', PDB: 'C:\GAMEDIR\CLI\Local\Client_Data\Mono\mono.dll'
    83. C:\Windows\system32\PSAPI.DLL:PSAPI.DLL (0000000077340000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\PSAPI.DLL', fileVersion: 6.1.7600.16385
    84. C:\Windows\system32\MSWSOCK.dll:MSWSOCK.dll (000007FEFC760000), size: 348160 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MSWSOCK.dll', fileVersion: 6.1.7601.18254
    85. C:\Windows\system32\uxtheme.dll:uxtheme.dll (000007FEFB700000), size: 352256 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\uxtheme.dll', fileVersion: 6.1.7600.16385
    86. C:\Windows\system32\CRYPTBASE.dll:CRYPTBASE.dll (000007FEFCE60000), size: 61440 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\CRYPTBASE.dll', fileVersion: 6.1.7600.16385
    87. C:\Windows\system32\d3d11.dll:d3d11.dll (000007FEF6CB0000), size: 1921024 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\d3d11.dll', fileVersion: 6.2.9200.16570
    88. C:\Windows\system32\dxgi.dll:dxgi.dll (000007FEF6E90000), size: 380928 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\dxgi.dll', fileVersion: 6.2.9200.16492
    89. C:\Windows\system32\DXGIDebug.dll:DXGIDebug.dll (000007FEF6C80000), size: 147456 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\DXGIDebug.dll', fileVersion: 9.30.9600.16384
    90. C:\Windows\system32\WINTRUST.dll:WINTRUST.dll (000007FEFD2E0000), size: 237568 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WINTRUST.dll', fileVersion: 6.1.7601.18205
    91. C:\Windows\system32\CRYPT32.dll:CRYPT32.dll (000007FEFD170000), size: 1490944 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\CRYPT32.dll', fileVersion: 6.1.7601.18277
    92. C:\Windows\system32\MSASN1.dll:MSASN1.dll (000007FEFCFD0000), size: 61440 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MSASN1.dll', fileVersion: 6.1.7601.17514
    93. C:\Windows\system32\nvwgf2umx.dll:nvwgf2umx.dll (000007FEF5A20000), size: 18264064 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\nvwgf2umx.dll', fileVersion: 9.18.13.3523
    94. C:\Windows\system32\nvspcap64.dll:nvspcap64.dll (0000000180000000), size: 1216512 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\nvspcap64.dll', fileVersion: 11.10.13.1
    95. C:\Windows\system32\nvapi64.dll:nvapi64.dll (000007FEF8B00000), size: 3248128 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\nvapi64.dll', fileVersion: 9.18.13.3523
    96. C:\Windows\system32\MMDevAPI.DLL:MMDevAPI.DLL (000007FEFB150000), size: 307200 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MMDevAPI.DLL', fileVersion: 6.1.7600.16385
    97. C:\Windows\system32\PROPSYS.dll:PROPSYS.dll (000007FEFB760000), size: 1228800 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\PROPSYS.dll', fileVersion: 7.0.7601.17514
    98. C:\Windows\system32\wdmaud.drv:wdmaud.drv (000007FEFAC70000), size: 241664 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\wdmaud.drv', fileVersion: 6.1.7601.17514
    99. C:\Windows\system32\ksuser.dll:ksuser.dll (0000000074BC0000), size: 24576 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\ksuser.dll', fileVersion: 6.1.7600.16385
    100. C:\Windows\system32\AVRT.dll:AVRT.dll (000007FEFB040000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\AVRT.dll', fileVersion: 6.1.7600.16385
    101. C:\Windows\system32\AUDIOSES.DLL:AUDIOSES.DLL (000007FEF72C0000), size: 323584 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\AUDIOSES.DLL', fileVersion: 6.1.7601.17514
    102. C:\Windows\system32\msacm32.drv:msacm32.drv (000007FEFAA40000), size: 40960 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\msacm32.drv', fileVersion: 6.1.7600.16385
    103. C:\Windows\system32\midimap.dll:midimap.dll (000007FEF25F0000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\midimap.dll', fileVersion: 6.1.7600.16385
    104. C:\Windows\system32\dsound.dll:dsound.dll (000007FEF5690000), size: 557056 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\dsound.dll', fileVersion: 6.1.7600.16385
    105. C:\Windows\system32\POWRPROF.dll:POWRPROF.dll (000007FEFB050000), size: 180224 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\POWRPROF.dll', fileVersion: 6.1.7600.16385
    106. C:\Windows\system32\CLBCatQ.DLL:CLBCatQ.DLL (000007FEFEE60000), size: 626688 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\CLBCatQ.DLL', fileVersion: 2001.12.8530.16385
    107. C:\Windows\system32\xinput1_3.dll:xinput1_3.dll (0000000004250000), size: 122880 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\xinput1_3.dll', fileVersion: 9.18.944.0
    108. C:\Windows\system32\NLAapi.dll:NLAapi.dll (000007FEFA660000), size: 86016 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\NLAapi.dll', fileVersion: 6.1.7601.17964
    109. C:\Windows\system32\napinsp.dll:napinsp.dll (000007FEF8870000), size: 86016 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\napinsp.dll', fileVersion: 6.1.7600.16385
    110. C:\Windows\system32\pnrpnsp.dll:pnrpnsp.dll (000007FEF5A00000), size: 102400 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\pnrpnsp.dll', fileVersion: 6.1.7600.16385
    111. C:\Windows\System32\winrnr.dll:winrnr.dll (000007FEF59F0000), size: 45056 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\winrnr.dll', fileVersion: 6.1.7600.16385
    112. C:\Windows\System32\fwpuclnt.dll:fwpuclnt.dll (000007FEFA540000), size: 339968 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\fwpuclnt.dll', fileVersion: 6.1.7601.18283
    113. C:\Windows\system32\rasadhlp.dll:rasadhlp.dll (000007FEF59E0000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\rasadhlp.dll', fileVersion: 6.1.7600.16385
    114. C:\Windows\System32\wshtcpip.dll:wshtcpip.dll (000007FEFC140000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\wshtcpip.dll', fileVersion: 6.1.7600.16385
    115. C:\Windows\system32\dbghelp.dll:dbghelp.dll (000007FEF4000000), size: 1200128 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\dbghelp.dll', fileVersion: 6.1.7601.17514
    116.  
    117. ========== OUTPUTING STACK TRACE ==================
    118.  
    119. (0x0000000140109BFA) (Client): (filename not available): AnimationEvent::Transfer<SafeBinaryRead> + 0x19b1a
    120. (0x0000000100000010) ((module-name not available)): (filename not available): (function-name not available) + 0x0
    121. (0x0000000100000001) ((module-name not available)): (filename not available): (function-name not available) + 0x0
    122.  
    123. ========== END OF STACKTRACE ===========
    124.  
    125. **** Crash! ****
    126.  
    127.  
     
  2. Hybrid1969

    Hybrid1969

    Joined:
    Apr 19, 2013
    Posts:
    31
    did you ever resolve this as i would have just sent it as a byte array