View Issue Details

IDProjectCategoryView StatusLast Update
0004291The Dark ModCodingpublic02.01.2023 04:31
ReporterAgent Jones Assigned ToAgent Jones  
PrioritynormalSeveritycrashReproducibilityalways
Status assignedResolutionopen 
Product VersionTDM 2.03 
Summary0004291: Downloader crash after connection loss
Description-Click on Download Missions, download mission list.
-Lose your connection.
-Select a mission and try to download it.
-Click OK when the connection error comes up.
-The _selectedMods list won't be wiped unless you change page. If you select something for download again the game will crash. The error occurs at line 596 in DownloadMenu.cpp [gui->SetStateString(va("dl_mission_name_%d", i), modIndex != -1 ? mods[modIndex]->title : "");]
Additional Informationas a fix, tell the game to clear the list if we've lost connection.
line 73, file DownloadMenu.cpp:

_selectedListTop = 0;
_selectedMods.Clear();
UpdateGUI(gui);
UpdateDownloadProgress(gui);
TagsNo tags attached.

Relationships

related to 0005551 resolvedstgatilov Rework FM database to use SVN as primary storage 

Activities

nbohr1more

nbohr1more

02.01.2023 03:55

developer   ~0015665

Last edited: 02.01.2023 04:31

Looks like the equivalent fix should now be at line 67 and should now be:

gui->DeleteStateVar("downloadSelectedList_item_0");
_selectedMods.Clear();
UpdateDownloadProgress(gui);
UpdateGUI(gui);

Issue History

Date Modified Username Field Change
28.02.2016 19:07 Agent Jones New Issue
28.02.2016 19:07 Agent Jones Status new => assigned
28.02.2016 19:07 Agent Jones Assigned To => Agent Jones
01.01.2023 19:02 nbohr1more Relationship added related to 0005551
02.01.2023 03:55 nbohr1more Note Added: 0015665
02.01.2023 04:31 nbohr1more Note Edited: 0015665