use index
This commit is contained in:
parent
9fe2baa187
commit
ce3aedce18
@ -77,7 +77,7 @@ unsigned long __generate_hash(char* str) {
|
|||||||
unsigned long ret = 0;
|
unsigned long ret = 0;
|
||||||
size_t max = strlen(str);
|
size_t max = strlen(str);
|
||||||
while (pos < max) {
|
while (pos < max) {
|
||||||
ret += (unsigned char)str[pos];
|
ret += (unsigned char)str[pos]*pos;
|
||||||
if (ret > (unsigned long)ULONG_MAX - 10) ret = 32;
|
if (ret > (unsigned long)ULONG_MAX - 10) ret = 32;
|
||||||
pos ++;
|
pos ++;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user