Changeset 101999 in vbox for trunk/src/libs/xpcom18a4/nsprpub
- Timestamp:
- Nov 8, 2023 6:28:43 PM (15 months ago)
- Location:
- trunk/src/libs/xpcom18a4/nsprpub/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/nsprpub/lib/ds/plhash.c
r101869 r101999 41 41 #include "plhash.h" 42 42 #include "prbit.h" 43 #include "prlog.h"44 43 #include "prmem.h" 45 44 #include "prtypes.h" 46 45 #include <stdlib.h> 47 46 #include <string.h> 47 48 #include <iprt/assert.h> 48 49 49 50 /* Compute the number of buckets in ht */ … … 237 238 next = he->next; 238 239 hep = PL_HashTableRawLookup(ht, he->keyHash, he->key); 239 PR_ASSERT(*hep == 0);240 Assert(*hep == 0); 240 241 he->next = 0; 241 242 *hep = he; … … 312 313 next = he->next; 313 314 hep = PL_HashTableRawLookup(ht, he->keyHash, he->key); 314 PR_ASSERT(*hep == 0);315 Assert(*hep == 0); 315 316 he->next = 0; 316 317 *hep = he; -
trunk/src/libs/xpcom18a4/nsprpub/lib/libc/src/strlen.c
r1 r101999 38 38 #include "plstr.h" 39 39 #include "prtypes.h" 40 #include "prlog.h"41 40 #include <string.h> 41 42 #include <iprt/assert.h> 42 43 43 44 PR_IMPLEMENT(PRUint32) … … 54 55 */ 55 56 if( sizeof(PRUint32) < sizeof(size_t) ) 56 PR_ASSERT(l < 2147483647);57 Assert(l < 2147483647); 57 58 58 59 return (PRUint32)l;
Note:
See TracChangeset
for help on using the changeset viewer.