Changeset 74728 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Oct 9, 2018 10:52:12 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/rest/RTCRestClientRequestBase.cpp
r74425 r74728 94 94 95 95 /* Replace with actual values: */ 96 RTCString strTmpVal;97 96 for (size_t i = 0; i < a_cPathParams; i++) 98 97 { … … 107 106 VERR_REST_PATH_PARAMETER_NOT_SET); 108 107 109 rc = a_paPathParamStates[i].pObj->toString(&strTmpVal, a_paPathParams[i].fFlags); 108 RTCString strPathParam; 109 rc = a_paPathParamStates[i].pObj->toString(&strPathParam, a_paPathParams[i].fFlags); 110 AssertRCReturn(rc, rc); 111 112 RTCString strTmpVal; 113 rc = strTmpVal.printfNoThrow("%RMpa", strPathParam.c_str()); /* urlencode */ 110 114 AssertRCReturn(rc, rc); 111 115
Note:
See TracChangeset
for help on using the changeset viewer.