Changeset 74192 in vbox
- Timestamp:
- Sep 11, 2018 11:22:36 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/rest/RTCRestClientApiBase.cpp
r74052 r74192 54 54 { 55 55 if (m_hHttp != NIL_RTHTTP) 56 { 57 #if 0 58 /* 59 * XXX: disable for now as it causes the RTHTTP handle state 60 * and curl state to get out of sync. 61 */ 56 62 return RTHttpReset(m_hHttp); 63 #else 64 RTHttpDestroy(m_hHttp); 65 m_hHttp = NIL_RTHTTP; 66 #endif 67 } 57 68 58 69 int rc = RTHttpCreate(&m_hHttp);
Note:
See TracChangeset
for help on using the changeset viewer.