Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 132b2d77 authored by Harald Martini's avatar Harald Martini
Browse files

fixed stack overflow in VehicleDataAdapter

parent ffb105ae
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,7 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter.SimulationComponen
protected override VehicleData DoCreateVehicleData(IVehicleDeclarationInputData data, Segment segment, Mission mission, Kilogram loading,
double? passengerCount, bool allowVocational)
{
var retVal = base.CreateVehicleData(data, segment, mission, loading, passengerCount, allowVocational);
var retVal = base.DoCreateVehicleData(data, segment, mission, loading, passengerCount, allowVocational);
if (data.ExemptedVehicle)
{
System.Diagnostics.Debug.Assert( false, "CreateExemptedVehicleData should be used");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment