You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Per.Larsson #preflight 63f8922ab879197e73369f7e - CL 24316937 made an effort to prevent serialization of bad data from corrupting memory, however the checks were a little too zealous. In some cases the archive provided for serialization is already in an error state in which case we should trust that the calling code has processes the problem correctly. Handling the error at this point from within bulkdata can give misleading errors. - We now check if the archive is in the error state or not BEFORE we start serialization and if it is in error we just return early with default values. - This should ensure that the problem is reported by the system creating it rather than always by bulkdata and make things easier to diagnose/fix/ [CL 24406791 by paul chipchase in ue5-main branch]