Changeset 73886 in vbox for trunk/src/VBox/Runtime/generic/http-curl.cpp
- Timestamp:
- Aug 25, 2018 9:51:12 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/http-curl.cpp
r73851 r73886 313 313 314 314 315 RTR3DECL( void) RTHttpDestroy(RTHTTP hHttp)315 RTR3DECL(int) RTHttpDestroy(RTHTTP hHttp) 316 316 { 317 317 if (hHttp == NIL_RTHTTP) 318 return ;318 return VINF_SUCCESS; 319 319 320 320 PRTHTTPINTERNAL pThis = hHttp; 321 RTHTTP_VALID_RETURN _VOID(pThis);321 RTHTTP_VALID_RETURN(pThis); 322 322 323 323 Assert(!pThis->fBusy); … … 348 348 349 349 curl_global_cleanup(); 350 351 return VINF_SUCCESS; 350 352 } 351 353
Note:
See TracChangeset
for help on using the changeset viewer.