mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
No bug - Remove unused variables origStr from HashString; r=themaid
This commit is contained in:
parent
71edcafb0e
commit
78cef75441
@ -92,7 +92,6 @@ PRUint32
|
|||||||
HashString(const char *str)
|
HashString(const char *str)
|
||||||
{
|
{
|
||||||
PRUint32 code = 0;
|
PRUint32 code = 0;
|
||||||
const char *origStr = str;
|
|
||||||
|
|
||||||
while (*str) {
|
while (*str) {
|
||||||
code = AddToHash(code, *str);
|
code = AddToHash(code, *str);
|
||||||
@ -106,7 +105,6 @@ PRUint32
|
|||||||
HashString(const PRUnichar *str)
|
HashString(const PRUnichar *str)
|
||||||
{
|
{
|
||||||
PRUint32 code = 0;
|
PRUint32 code = 0;
|
||||||
const PRUnichar *origStr = str;
|
|
||||||
|
|
||||||
while (*str) {
|
while (*str) {
|
||||||
code = AddToHash(code, *str);
|
code = AddToHash(code, *str);
|
||||||
|
Loading…
Reference in New Issue
Block a user