Changeset 13549 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- Oct 24, 2008 11:31:40 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38412
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/simplepattern.cpp
r13513 r13549 40 40 { 41 41 #if 0 42 return RTStrSimplePatternNMatch(pszPattern, ~(size_t)0, pszString, ~(size_t)0);42 return RTStrSimplePatternNMatch(pszPattern, RTSTR_MAX, pszString, RTSTR_MAX); 43 43 #else 44 44 /* ASSUMES ASCII / UTF-8 */ … … 188 188 189 189 if (poffMatchingPattern) 190 *poffMatchingPattern = ~(size_t)0;190 *poffMatchingPattern = RTSTR_MAX; 191 191 return false; 192 192 }
Note:
See TracChangeset
for help on using the changeset viewer.