https://bugs.documentfoundation.org/show_bug.cgi?id=164781
--- Comment #24 from Patrick (volunteer) <[email protected]> --- OK. Found where sftp (i.e. SSH service in Remote Files dialog) is failing. Apparently there is no provider found in UniversalContentBroker::queryContentProvider() so I think this confirms my suspicion that we never get to the cURL code on macOS. Any suggestions where to look next?: diff --git a/ucb/source/core/ucb.cxx b/ucb/source/core/ucb.cxx index 43e5ca0ab096..feb8c879da6b 100644 --- a/ucb/source/core/ucb.cxx +++ b/ucb/source/core/ucb.cxx @@ -713,6 +713,8 @@ Reference< XContentProvider > UniversalContentBroker::queryContentProvider( osl::MutexGuard aGuard( m_aMutex ); ProviderList_Impl const * pList = m_aProviders.map( Identifier ); +if (Identifier.startsWith("sftp:")) +fprintf(stderr, "pList is a nullptr for sftp on macOS: %i %s %p\n", bResolved, Identifier.toUtf8().getStr(), pList); return pList ? bResolved ? pList->front().getResolvedProvider() : pList->front().getProvider() : Reference< XContentProvider >(); -- You are receiving this mail because: You are the assignee for the bug.
