mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Check for string length
This commit is contained in:
parent
a728ae6b36
commit
751d6de2eb
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;
|
||||
#endif
|
||||
|
||||
if (setting[0] == '$' && setting[1] == '6') {
|
||||
if (strlen(setting) >= 2 && setting[0] == '$' && setting[1] == '6') {
|
||||
return __crypt_sha512(key, setting, buf);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue