sc/source/ui/formdlg/dwfunctr.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 6592543a598994e44823b7e1158e34b0c6ec82d3
Author: Eike Rathke <er...@redhat.com>
Date:   Mon Jan 27 13:02:29 2014 +0100

    guard against null pointer access on LRU function list, fdo#60036
    
    ... which may have happened if the config's LRU contained enums of
    non-existing functions, i.e. if they were shifted by an update.
    
    Change-Id: I9a005f41cc74c530cf37d1782ce8c53b8f5dce6e
    (cherry picked from commit a94f0f92e8b09f6cd3989b646500ff5814274621)
    Reviewed-on: https://gerrit.libreoffice.org/7750
    Tested-by: Markus Mohrhard <markus.mohrh...@googlemail.com>
    Reviewed-by: Markus Mohrhard <markus.mohrh...@googlemail.com>

diff --git a/sc/source/ui/formdlg/dwfunctr.cxx 
b/sc/source/ui/formdlg/dwfunctr.cxx
index 7967163..322cf4b 100644
--- a/sc/source/ui/formdlg/dwfunctr.cxx
+++ b/sc/source/ui/formdlg/dwfunctr.cxx
@@ -791,12 +791,12 @@ void ScFunctionDockWin::UpdateFunctionList()
     }
     else // LRU-Liste
     {
-        for(::std::vector<const formula::IFunctionDescription*>::iterator 
iter=aLRUList.begin();iter!=aLRUList.end();++iter)
+        for (::std::vector<const formula::IFunctionDescription*>::iterator 
iter=aLRUList.begin();
+                iter != aLRUList.end(); ++iter)
         {
             const formula::IFunctionDescription* pDesc = *iter;
-            pAllFuncList->SetEntryData(
-                    pAllFuncList->InsertEntry(pDesc->getFunctionName()),
-                    (void*)pDesc );
+            if (pDesc)
+                pAllFuncList->SetEntryData( pAllFuncList->InsertEntry( 
pDesc->getFunctionName()), (void*)pDesc);
         }
     }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to