Skip to content

Commit

Permalink
Merge pull request #1077 from navit-gps/traff_crash
Browse files Browse the repository at this point in the history
Minor TraFF-related fixes
  • Loading branch information
mvglasow committed Dec 19, 2020
2 parents bab784a + a1d4b2d commit 3ab540c
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions navit/route.c
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,8 @@ struct map_selection * route_get_selection(struct route * this_) {
int i = 0;
GList *tmp;

c[i++] = this_->pos->c;
if (this_->pos)
c[i++] = this_->pos->c;
tmp = this_->destinations;
while (tmp) {
struct route_info *dst = tmp->data;
Expand Down Expand Up @@ -3157,17 +3158,12 @@ static void route_graph_build_idle(struct route_graph *rg, struct vehicleprofile
* add any routing information to the route graph - this has to be done via the route_graph_flood()
* function.
*
* The function does not create a graph covering the whole map, but only covering the rectangle
* between c1 and c2.
*
* @param ms The mapset to build the route graph from
* @param c The coordinates of the destination or next waypoint
* @param c1 Corner 1 of the rectangle to use from the map
* @param c2 Corner 2 of the rectangle to use from the map
* @param c An array of coordinates for the current position, waypoints (if any) and destination
* @param count Number of coordinates in `c`
* @param done_cb The callback which will be called when graph is complete
* @return The new route graph.
*/
// FIXME documentation does not match argument list
static struct route_graph *route_graph_build(struct mapset *ms, struct coord *c, int count, struct callback *done_cb,
int async,
struct vehicleprofile *profile) {
Expand Down

0 comments on commit 3ab540c

Please sign in to comment.