removed unused memory size

This commit is contained in:
Václav Šmejkal 2022-05-26 17:45:10 +02:00
parent 0fed6e7f0c
commit 39e174a874

View File

@ -14,7 +14,7 @@ outputFlags encryptText(char *text, char *keyNew, inputFlags flags)
if (!flags.skipCheck) checkVersion(flags); if (!flags.skipCheck) checkVersion(flags);
//VARIABLES //VARIABLES
char *key = malloc(getKeyLength() + 1); char *key = malloc(getKeyLength());
char *returningText; char *returningText;
char *textBuffer; char *textBuffer;
int *textKeyChain = malloc(sizeof(int) * strlen(text)); int *textKeyChain = malloc(sizeof(int) * strlen(text));