Need help with UE5 error/crashing

First time here guys so forgive me if I am not in the exact place I should be to post this. I have a degree in software engineering as well so please any technical help you can give me to fix this.

I keep getting this error when playing a particular game. It looks like to me its the UE5 engine.

LoginId:24ef8b2749f2aefd2ad9258608d0ea62
EpicAccountId:

Unhandled Exception: EXCEPTION_ACCESS_VIOLATION writing address 0x000001fe47c40000

VCRUNTIME140
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
kernel32
ntdll

It looks like a possible memory leak in the games source code to me but I am not sure. I have spent hours reading online and can not find much on it other than many others are having the same problem. Any help is much appreciated.

GPU - AMD Radeon RX 7800 XT - Primary/Discrete
VRAM - 16368 MB - GDDR6 2438 MHz
Graphics - AMD Radeon RX 7800 XT
Graphics Manufacturer - Powered by AMD
Usable Memory Size - 16368 MB
Core Clock - 2124 MHz
Memory Type - GDDR6
Memory Clock - 2438 MHz
Memory Bit Rate - 19.50 Gbps
Total Memory Bandwidth - 624 GByte/s
BIOS Part Number - 113-D7120201-S01
BIOS Version - 022.002.001.019
BIOS Date - 2023/08/02 06:33
Device ID - 747E
Revision ID - C8
Vendor ID - 1002
SubSystem ID - 475D
SubSystem Vendor ID - 1DA2
Bus Type - PCI Express 4.0
Current Bus Settings - PCI Express 4.0 x4

CPU - AMD Ryzen 9 5900X 12-Core Processor - 12 Cores
RAM - 64 GB
Model - AMD Ryzen 9 5900X 12-Core Processor
Processor Speed - 4.20 GHz
Cores - 12
Threads - 24
RAM - 64 GB

I don’t think its a hardware issue but this is the hardware just in case
Thanks.

I can’t figure out what is causing the crash. All drivers and chip sets are up to date

This is a support forum for developers, not for the products created with UnrealEngine.

You have to ask the developer of the game about how to solve the issue as there’s not much we can do here other than suggesting to update GPU drivers. (Even tho your crash doesn’t look GPU related, but it’s hard to tell from the little info of your crash log)

My apologies. The error seems to be due to UE5. I have tried everywhere else so I figured may be here I could get help about a crash from people who deal with it frequently. I can’t seem to find anything else.

This will be my last post on this topic then. If anyone can offer any insight on what exactly is causing the crash, or where or what could cause it, would be much appreciated. Here is a final crash log

LoginId:24ef8b2749f2aefd2ad9258608d0ea62
EpicAccountId:

Unhandled Exception: EXCEPTION_ACCESS_VIOLATION reading address 0x000002373ec2c690

Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
Stalker2_Win64_Shipping
kernel32
ntdll

Hey there @Maceuz! Welcome to the community! As Ben mentioned, this forum is mostly for UE developers, and as such much of the support that can be offered will require you to have the source code of the game you intend to debug.

You may notice the call-stack for the error has very little information other than a memory location. This is due to the fact that the shipping version of the game doesn’t come with the symbols necessary to understand the error and walk up the call-stack. However, if a developer for the game were to have access to your error files, and recreation information, they may be able to piece together your error dump and ascertain exactly where the error is coming from.

Since we only have a memory location to go off of in this case, we’re not able to pin down where exactly the issue originates, though I can give you some most common issues that occur to help out, but as you’re likely aware with your degree, a codebase of sufficient scale can have millions of possible failure points and often you need to step through full debugging to establish where exactly the error is.