Changeset 73978 in vbox for trunk/src/VBox/Runtime/common/rest/RTCRestClientApiBase.cpp
- Timestamp:
- Aug 30, 2018 1:19:36 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/rest/RTCRestClientApiBase.cpp
r73977 r73978 117 117 if (strQuery.isNotEmpty()) 118 118 { 119 if (RT_SUCCESS(rc)) 120 rc = strFullUrl.appendNoThrow('?'); 121 if (RT_SUCCESS(rc)) 122 rc = strFullUrl.appendNoThrow(strQuery); 119 Assert(strQuery.startsWith("?")); 120 rc = strFullUrl.appendNoThrow(strQuery); 123 121 strQuery.setNull(); 124 122 }
Note:
See TracChangeset
for help on using the changeset viewer.