Bug 800220 - Part 1. Replace PL_strlen with strlen. r=ehsan

This commit is contained in:
Makoto Kato
2013-05-08 12:40:12 +09:00
parent 8231059d41
commit efb7bf25b2
25 changed files with 40 additions and 40 deletions

View File

@@ -296,7 +296,7 @@ nsDiskCache::Hash(const char * key, PLDHashNumber initval)
const uint8_t *k = reinterpret_cast<const uint8_t*>(key);
uint32_t a, b, c, len, length;
length = PL_strlen(key);
length = strlen(key);
/* Set up the internal state */
len = length;
a = b = 0x9e3779b9; /* the golden ratio; an arbitrary value */