No bug - Remove unused variables origStr from HashString; r=themaid

This commit is contained in:
Ms2ger 2012-03-11 09:48:18 +01:00
parent 71edcafb0e
commit 78cef75441

View File

@ -92,7 +92,6 @@ PRUint32
HashString(const char *str)
{
PRUint32 code = 0;
const char *origStr = str;
while (*str) {
code = AddToHash(code, *str);
@ -106,7 +105,6 @@ PRUint32
HashString(const PRUnichar *str)
{
PRUint32 code = 0;
const PRUnichar *origStr = str;
while (*str) {
code = AddToHash(code, *str);