- Timestamp:
- Oct 26, 2010 12:44:43 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGPlugInSolaris.cpp
r31530 r33467 1057 1057 1058 1058 /* 1059 * Look for the copy 1059 * Look for the copyright string too, just to be sure. 1060 1060 */ 1061 1061 static const uint8_t s_abSMI[] = "Sun Microsystems, Inc."; 1062 static const uint8_t s_abORCL[] = "Oracle and/or its affiliates."; 1062 1063 rc = DBGFR3MemScan(pVM, 0, &Addr, cbRange, 1, s_abSMI, sizeof(s_abSMI) - 1, &HitAddr); 1063 1064 if (RT_FAILURE(rc)) 1064 return false; 1065 { 1066 /* Try the alternate copyright string. */ 1067 rc = DBGFR3MemScan(pVM, 0, &Addr, cbRange, 1, s_abORCL, sizeof(s_abORCL) - 1, &HitAddr); 1068 if (RT_FAILURE(rc)) 1069 return false; 1070 } 1065 1071 1066 1072 /*
Note:
See TracChangeset
for help on using the changeset viewer.