diff options
Diffstat (limited to 'core/fxcodec/jbig2/JBig2_Context.cpp')
-rw-r--r-- | core/fxcodec/jbig2/JBig2_Context.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcodec/jbig2/JBig2_Context.cpp b/core/fxcodec/jbig2/JBig2_Context.cpp index d976abdf31..d019cc148e 100644 --- a/core/fxcodec/jbig2/JBig2_Context.cpp +++ b/core/fxcodec/jbig2/JBig2_Context.cpp @@ -603,9 +603,9 @@ JBig2_Result CJBig2_Context::ParseSymbolDict(CJBig2_Segment* pSegment) { } if (wFlags & 0x0200) { if (bUseGbContext) - pSegment->m_SymbolDict->SetGbContext(gbContext); + pSegment->m_SymbolDict->SetGbContext(std::move(gbContext)); if (bUseGrContext) - pSegment->m_SymbolDict->SetGrContext(grContext); + pSegment->m_SymbolDict->SetGrContext(std::move(grContext)); } return JBig2_Result::kSuccess; } |