Changeset 62469 in vbox for trunk/src/VBox
- Timestamp:
- Jul 22, 2016 6:02:13 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGPlugInLinux.cpp
r62319 r62469 1828 1828 * @param ppszCfgNext Where to store the pointer to the data following the identifier. 1829 1829 * @param ppszIde Where to store the pointer to the identifier on success. 1830 * Free with RTStrFree(). 1830 * Free with RTStrFree(). 1831 1831 */ 1832 1832 static int dbgDiggerLinuxCfgParseIde(const char *pszCfg, const char **ppszCfgNext, char **ppszIde) … … 1883 1883 { 1884 1884 pCfgItem->enmType = DBGDIGGERLINUXCFGITEMTYPE_NUMBER; 1885 pCfgItem->u.i64Num = i64Num; 1885 pCfgItem->u.i64Num = i64Num; 1886 1886 } 1887 1887 else … … 1920 1920 { 1921 1921 pCfgItem->enmType = DBGDIGGERLINUXCFGITEMTYPE_FLAG; 1922 pCfgItem->u.fModule = *pszCfg == 'm'; 1922 pCfgItem->u.fModule = *pszCfg == 'm'; 1923 1923 } 1924 1924 else … … 2025 2025 } 2026 2026 2027 /** 2027 /** 2028 2028 * Decompresses the given config and validates the UTF-8 encoding. 2029 2029 * … … 2200 2200 * to get the symbol table, the config database is required to select 2201 2201 * the method to use. 2202 */ 2202 */ 2203 2203 int rc = dbgDiggerLinuxCfgFind(pThis, pUVM); 2204 2204 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.