diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2020-12-29 21:40:29 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2020-12-29 21:40:29 +0100 |
commit | 55b237dbe83acce70649d118b1fb69067f96b661 (patch) | |
tree | df1227f4c62f62ed76c18c148600e1fad5ba9582 /tools.c | |
parent | 2b3556b460665d9a4036b1623e7e7ff5ff6d37d8 (diff) | |
download | vdr-55b237dbe83acce70649d118b1fb69067f96b661.tar.gz vdr-55b237dbe83acce70649d118b1fb69067f96b661.tar.bz2 |
Fixed strreplace() to handle NULL strings
Diffstat (limited to 'tools.c')
-rw-r--r-- | tools.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: tools.c 5.1 2020/12/26 15:49:01 kls Exp $ + * $Id: tools.c 5.2 2020/12/29 21:40:29 kls Exp $ */ #include "tools.h" @@ -151,6 +151,8 @@ char *strreplace(char *s, char c1, char c2) char *strreplace(char *s, const char *s1, const char *s2) { + if (!s || !s1 || !s2) + return s; char *p = strstr(s, s1); if (p) { int of = p - s; |