Changeset 57728 in vbox for trunk/src/VBox
- Timestamp:
- Sep 12, 2015 12:49:32 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 102643
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/http.cpp
r57727 r57728 229 229 RTStrFree(pThis->pszProxyHost); 230 230 RTStrFree(pThis->pszProxyUsername); 231 RTMemWipeThoroughly(pThis->pszProxyPassword, strlen(pThis->pszProxyPassword), 2); 232 RTStrFree(pThis->pszProxyPassword); 231 if (pThis->pszProxyPassword) 232 { 233 RTMemWipeThoroughly(pThis->pszProxyPassword, strlen(pThis->pszProxyPassword), 2); 234 RTStrFree(pThis->pszProxyPassword); 235 } 233 236 234 237 RTMemFree(pThis);
Note:
See TracChangeset
for help on using the changeset viewer.