Skip to content

Commit

Permalink
Fixed out of bounds index in rr_graph.c
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-w committed May 9, 2016
1 parent 687e637 commit 8a89d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vpr/SRC/route/rr_graph.c
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ static bool **alloc_and_load_perturb_ipins(INP int max_chan_width, INP int L_num

int tracks_in_seg_type = sets_per_seg_type[iseg] * fac;

for (int itype = 1; iseg < L_num_types; ++itype) {
for (int itype = 1; itype < L_num_types; ++itype) {
result[itype][iseg] = false;

float Fc_ratio;
Expand Down

0 comments on commit 8a89d0f

Please sign in to comment.