]> git.saurik.com Git - wxWidgets.git/commitdiff
guard against null ptr access
authorStefan Csomor <csomor@advancedconcepts.ch>
Wed, 2 Feb 2011 07:36:18 +0000 (07:36 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Wed, 2 Feb 2011 07:36:18 +0000 (07:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66825 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/list.h

index a2ba1882f4522e5083c54a0f142bb1cc78f47363..e6fd24d74b1529b405af474e275f97b339fd1e78 100644 (file)
@@ -819,9 +819,19 @@ private:
             reference_type operator*() const                                \
                 { return *(pointer_type)m_node->GetDataPtr(); }             \
             ptrop                                                           \
-            itor& operator++() { m_node = m_node->GetNext(); return *this; }\
+            itor& operator++()                                              \
+            {                                                               \
+                if (m_node)                                                 \
+                    m_node = m_node->GetNext();                             \
+                return *this;                                               \
+            }                                                               \
             const itor operator++(int)                                      \
-                { itor tmp = *this; m_node = m_node->GetNext(); return tmp; }\
+            {                                                               \
+                itor tmp = *this;                                           \
+                if (m_node)                                                 \
+                    m_node = m_node->GetNext();                             \
+                return tmp;                                                 \
+            }                                                               \
             itor& operator--()                                              \
             {                                                               \
                 m_node = m_node ? m_node->GetPrevious() : m_init;           \
@@ -862,9 +872,19 @@ private:
             reference_type operator*() const                                \
                 { return *(pointer_type)m_node->GetDataPtr(); }             \
             ptrop                                                           \
-            itor& operator++() { m_node = m_node->GetNext(); return *this; }\
+            itor& operator++()                                              \
+            {                                                               \
+                if (m_node)                                                 \
+                    m_node = m_node->GetNext();                             \
+                return *this;                                               \
+            }                                                               \
             const itor operator++(int)                                      \
-                { itor tmp = *this; m_node = m_node->GetNext(); return tmp; }\
+            {                                                               \
+                itor tmp = *this;                                           \
+                if (m_node)                                                 \
+                    m_node = m_node->GetNext();                             \
+                return tmp;                                                 \
+            }                                                               \
             itor& operator--()                                              \
             {                                                               \
                 m_node = m_node ? m_node->GetPrevious() : m_init;           \