https://bugs.documentfoundation.org/show_bug.cgi?id=92792

DavidO <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |[email protected],
                   |                            |[email protected]
           Assignee|[email protected] |[email protected]
                   |desktop.org                 |

--- Comment #3 from DavidO <[email protected]> ---
Only Windows 64 bit is affected, because only here we are using (first time on
windows mork driver).

Looks like a mismatch in registered datasource name and one passed from the
dialog

in connectivity/registry/mork/org/openoffice/Office/DataAccess/Drivers.xcu

<node oor:name="sdbc:address:thunderbird:" oor:op="replace">

in extensions/source/abpilot/datasourcehandling.cxx

return lcl_implCreateAndSetURL( m_pImpl->xORB, _rName,
"sdbc:address:thunderbird" );

As the consequence, the driver is not matched in DriversConfig.cxx filter, in

OUString DriversConfig::getDriverFactoryName(const OUString& _sURL) const

in this comparison:

if ( sOldPattern.getLength() < aIter->first.getLength() &&
aWildCard.Matches(_sURL) )

That's because

aWildCard = "sdbc:address:thunderbird:"
_sURL = "sdbc:address:thunderbird"

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to