Changed: Check for string length
--HG-- branch : develop
This commit is contained in:
parent
ec12e6a75e
commit
4fc639671c
1 changed files with 1 additions and 1 deletions
|
@ -520,7 +520,7 @@ char * rz_crypt(register const char *key, register const char *setting, char *bu
|
||||||
return buff;
|
return buff;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (setting[0] == '$' && setting[1] == '6') {
|
if (strlen(setting) >= 2 && setting[0] == '$' && setting[1] == '6') {
|
||||||
return __crypt_sha512(key, setting, buf);
|
return __crypt_sha512(key, setting, buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue