AlbionOnline-StatisticsAnalysis icon indicating copy to clipboard operation
AlbionOnline-StatisticsAnalysis copied to clipboard

stack overflow

Open scientificCommunity opened this issue 7 months ago • 1 comments

Describe the bug hi guys! Stack overflow appears on startup The reason is that SocketsPacketProvider#OnReceive keeps calling socket?.BeginReceive, and socket?.BeginReceive will eventually go to SocketsPacketProvider#OnReceive, which will get into a dead loop leading to stack overflow. I'm not sure what's causing the problem, my solution was to change the call to socket?.BeginReceive to asynchronous and it worked fine.

Here are my changes

To Reproduce

  1. run app
  2. select language, select server location, select game folder
  3. Stack overflow causes program crash

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: Windows10
  • Tool Version : main branch
  • NPcap Version: Im not sure, It's default

scientificCommunity avatar Jun 27 '24 15:06 scientificCommunity