Browse Source

fix a segment fault

pull/8/head
Max Lv 11 years ago
parent
commit
4e97042b88
1 changed files with 1 additions and 0 deletions
  1. 1
      src/encrypt.c

1
src/encrypt.c

@ -262,6 +262,7 @@ int enc_init(const char *pass, const char *method) {
} else if (strcmp(method, "rc4") == 0) {
return RC4;
}
enc_table_init(enc_pass);
return TABLE;
}
Loading…
Cancel
Save