mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 16:38:42 +00:00
Avoid null pointer dereference in reencode().
Returning "*txt" if "txt" is a null pointer is a bad thing. Spotted with clang-analyzer. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
070e109c14
commit
a0bf375a1a
@ -103,7 +103,10 @@ const char *reencode(char **txt, const char *src_enc, const char *dst_enc)
|
|||||||
{
|
{
|
||||||
char *tmp;
|
char *tmp;
|
||||||
|
|
||||||
if (!txt || !*txt || !src_enc || !dst_enc)
|
if (!txt)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if (!*txt || !src_enc || !dst_enc)
|
||||||
return *txt;
|
return *txt;
|
||||||
|
|
||||||
/* no encoding needed if src_enc equals dst_enc */
|
/* no encoding needed if src_enc equals dst_enc */
|
||||||
|
Loading…
Reference in New Issue
Block a user