From: 박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 Date: Fri, 2 Aug 2019 07:50:11 +0000 (+0900) Subject: [moco-tf] Fix seg fault with LOG enabled (#6155) X-Git-Tag: submit/tizen/20190809.050447~219 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0caedbe3a23cafef34459175d4d9998c032f894a;p=platform%2Fcore%2Fml%2Fnnfw.git [moco-tf] Fix seg fault with LOG enabled (#6155) This will fix segment fault when run with LOG enabled Signed-off-by: SaeHie Park --- diff --git a/compiler/moco-tf/src/TFFormattedGraph.cpp b/compiler/moco-tf/src/TFFormattedGraph.cpp index bfec20a..959be64 100644 --- a/compiler/moco-tf/src/TFFormattedGraph.cpp +++ b/compiler/moco-tf/src/TFFormattedGraph.cpp @@ -63,7 +63,7 @@ protected: class TFNodeSummaryBuilder final : public TFNodeSummaryBuilderBase { public: - TFNodeSummaryBuilder(const locop::SymbolTable *tbl) : TFNodeSummaryBuilderBase(_tbl) + TFNodeSummaryBuilder(const locop::SymbolTable *tbl) : TFNodeSummaryBuilderBase(tbl) { // DO NOTHING }