- Timestamp:
- Jan 10, 2025 11:00:39 AM (8 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/USBFilter.cpp
r106500 r107633 705 705 * Performs simple pattern matching. 706 706 * 707 * @returns true on match andfalse on mismatch.708 * @param pszPattern The pattern to match against. 707 * @returns \c true on match and \c false on mismatch. 708 * @param pszPattern The pattern to match against. NULL is not okay. 709 709 * @param psz The string to match. 710 710 */ 711 711 static bool usbfilterMatchStringPattern(const char *pszPattern, const char *psz) 712 712 { 713 AssertPtrReturn(pszPattern, false); 714 AssertPtrReturn(psz, false); 715 713 716 char ch; 714 717 while ((ch = *pszPattern++))
Note:
See TracChangeset
for help on using the changeset viewer.