To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=73167





------- Additional comments from [EMAIL PROTECTED] Mon Jan  8 04:40:20 -0800 
2007 -------
@sparcmoz:  For lack of a MacIntel environment, maybe we can do some remote
debugging?  Your attached error box suggests that a call to
com::sun::star::uno::BaseReference::iquery_throw for type
com::sun::star::configuration::backend::XSingleLayerStratum fails on a null
reference.  A quick grep across the code base shows
configmgr/source/backend/multistratumbackend.cxx:1.11 to be the only file where
such calls are made.  Can you try with the below patch, whether this is indeed
the place where we fail and what the call stack looks like (abort is called, so
you can either start in a debugger, attach the debugger to a running soffice
before installing the extension, or debug the resulting core file).

RCS file: /cvs/util/configmgr/source/backend/multistratumbackend.cxx,v
retrieving revision 1.11
diff -u -r1.11 multistratumbackend.cxx
--- source/backend/multistratumbackend.cxx      16 Sep 2006 15:06:31 -0000     
1.11
+++ source/backend/multistratumbackend.cxx      8 Jan 2007 12:33:31 -0000
@@ -645,6 +645,7 @@
                        }
                        else
                        {
+if(!mBackendStrata[i].is()){fprintf(stderr,"query A %d\n",i);abort();}
                                uno::Reference<backenduno::XSingleLayerStratum>
xSingleLayerStratum(
                                        mBackendStrata[i],
uno::UNO_REF_QUERY_THROW) ;
                                if (xSingleLayerStratum.is())
@@ -738,6 +739,7 @@
                        }
                        else
                        {
+if(!mBackendStrata[nStrataIndex].is()){fprintf(stderr,"query B
%d\n",nStrataIndex);abort();}
                                uno::Reference< backenduno::XSingleLayerStratum
> xSingleLayerStratum(
                                        mBackendStrata[nStrataIndex],
uno::UNO_REF_QUERY_THROW );



---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to