Update git submodules
[LibreOffice.git] / external / libcmis / 0001-Take-into-account-m_CurlInitProtocolsFunction-in-cop.patch
blob235adbe382521ecaffc13820f854d0047056a9d8
1 From 98e7e9f15449e0c8eaa12776c6c126ea0411002e Mon Sep 17 00:00:00 2001
2 From: Julien Nabet <serval2412@yahoo.fr>
3 Date: Fri, 23 Feb 2024 21:59:12 +0100
4 Subject: [PATCH] Take into account m_CurlInitProtocolsFunction in copy
5 constructor HttpSession
7 ---
8 src/libcmis/http-session.cxx | 1 +
9 1 file changed, 1 insertion(+)
11 diff --git a/src/libcmis/http-session.cxx b/src/libcmis/http-session.cxx
12 index 8d427a4..79bcc08 100644
13 --- a/src/libcmis/http-session.cxx
14 +++ b/src/libcmis/http-session.cxx
15 @@ -183,6 +183,7 @@ HttpSession::HttpSession( string username, string password, bool noSslCheck,
17 HttpSession::HttpSession( const HttpSession& copy ) :
18 m_curlHandle( NULL ),
19 + m_CurlInitProtocolsFunction( copy.m_CurlInitProtocolsFunction ),
20 m_no100Continue( copy.m_no100Continue ),
21 m_oauth2Handler( copy.m_oauth2Handler ),
22 m_username( copy.m_username ),
23 --
24 2.45.1