https://bugs.documentfoundation.org/show_bug.cgi?id=146877
Julian Kalinowski <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|1 |0 Status|NEEDINFO |UNCONFIRMED --- Comment #3 from Julian Kalinowski <[email protected]> --- Here is the LO info: Version: 7.2.5.2 (x64) / LibreOffice Community Build ID: 499f9727c189e6ef3471021d6132d4c694f357e5 CPU threads: 8; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win Locale: de-DE (de_DE); UI: de-DE Calc: CL Here's my patch for the crash: diff --git a/ucb/source/ucp/webdav-neon/DAVProperties.cxx b/ucb/source/ucp/webdav-neon/DAVProperties.cxx index 575385f5d2d8..fece4506f795 100644 --- a/ucb/source/ucp/webdav-neon/DAVProperties.cxx +++ b/ucb/source/ucp/webdav-neon/DAVProperties.cxx @@ -98,7 +98,7 @@ void DAVProperties::createUCBPropName( const char * nspace, OUString & rFullName ) { OUString aNameSpace - = OStringToOUString( nspace, RTL_TEXTENCODING_UTF8 ); + = nspace ? OStringToOUString(nspace, RTL_TEXTENCODING_UTF8) : OUString(""); OUString aName = OStringToOUString( name, RTL_TEXTENCODING_UTF8 ); Julien: thank you for pointing me to the current master, i tried the current LO 7.4 daily build and can confirm the problem fixed there. Seems that dropping neon for curl improved WebDAV handling in general? Can we include the simple patch in current branches or do we just wait for 7.4? -- You are receiving this mail because: You are the assignee for the bug.
