removed deallocation broking outputFlags

This commit is contained in:
Václav Šmejkal 2022-05-08 19:48:50 +02:00
parent efab8647a8
commit 0389ca0226
2 changed files with 0 additions and 6 deletions

View File

@ -89,8 +89,5 @@ outputFlags decryptText(char *text, char *key, inputFlags flags)
key //USED KEY key //USED KEY
}; };
//DEALLOCATION
free(textKeyChain);
return output; return output;
} }

View File

@ -102,8 +102,5 @@ outputFlags encryptText(char *text, char *keyNew, inputFlags flags)
key //GENERATED/USED KEY key //GENERATED/USED KEY
}; };
//DEALLOCATION
free(key);
return output; return output;
} }