commit | 9cff779038ea266e784bde08dfb2e8fc94e906bc | [log] [tgz] |
---|---|---|
author | Junxiao Shi <git@mail1.yoursunny.com> | Mon Aug 01 21:45:11 2016 +0000 |
committer | Junxiao Shi <git@mail1.yoursunny.com> | Mon Aug 01 21:45:11 2016 +0000 |
tree | 387fb4569bc55c213348064a67f67919c4d2ef03 | |
parent | 02b73f5705f43cc49b4e7039ec6d18993ce8f7d1 [diff] [blame] |
table: pit::FaceRecord stores Face& instead of shared_ptr refs #3164 Change-Id: Ib23ab2341a37213fee791f2070f13b76da851d53
diff --git a/daemon/fw/best-route-strategy2.cpp b/daemon/fw/best-route-strategy2.cpp index df6ca4d..5080d9c 100644 --- a/daemon/fw/best-route-strategy2.cpp +++ b/daemon/fw/best-route-strategy2.cpp
@@ -195,7 +195,7 @@ const lp::NackHeader* inNack = outR.getIncomingNack(); if (inNack == nullptr) { ++nOutRecordsNotNacked; - lastFaceNotNacked = outR.getFace().get(); + lastFaceNotNacked = &outR.getFace(); continue; }