Skip to content

Commit

Permalink
Bug 735497 - [PATCH] Fix wrong pointer initialization in src/definiti…
Browse files Browse the repository at this point in the history
…on.cpp
  • Loading branch information
Dimitri van Heesch committed Aug 30, 2014
1 parent e21aaad commit cb5d8e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/definition.cpp
Expand Up @@ -371,7 +371,7 @@ Definition::Definition(const Definition &d) : DefinitionIntf()
}
if (d.m_impl->inbodyDocs)
{
m_impl->details = new DocInfo(*d.m_impl->inbodyDocs);
m_impl->inbodyDocs = new DocInfo(*d.m_impl->inbodyDocs);
}

m_isSymbol = d.m_isSymbol;
Expand Down

0 comments on commit cb5d8e6

Please sign in to comment.