diff options
| author | mwalker <mwalker@cinecert.com> | 2015-07-28 22:36:28 +0000 |
|---|---|---|
| committer | mwalker <> | 2015-07-28 22:36:28 +0000 |
| commit | 77200515d9acee07988f26dadfa37ffbd169cdfb (patch) | |
| tree | 0a362adbd3dc495f78cfa592094e905b46098a93 /src/KM_xml.cpp | |
| parent | bd764bb954c523a96329fa395bad2e09647acddc (diff) | |
mem leak fix
Diffstat (limited to 'src/KM_xml.cpp')
| -rw-r--r-- | src/KM_xml.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KM_xml.cpp b/src/KM_xml.cpp index 936fcb5..2fe4e33 100644 --- a/src/KM_xml.cpp +++ b/src/KM_xml.cpp @@ -822,7 +822,7 @@ public: ns_prefix = ""; } - ns_map::iterator ni = m_Namespaces->find(ns_name); + ns_map::iterator ni = m_Namespaces->find(ns_prefix); if ( ni != m_Namespaces->end() ) { |
