remove unnecessary initialization of variable
The inizialization value is never used and is overriden directly after.
This commit is contained in:
parent
199aaf1181
commit
bf286f73cd
@ -136,7 +136,7 @@ void markup_strip_a(char **str, char **urls)
|
|||||||
*/
|
*/
|
||||||
void markup_strip_img(char **str, char **urls)
|
void markup_strip_img(char **str, char **urls)
|
||||||
{
|
{
|
||||||
const char *start = *str;
|
const char *start;
|
||||||
|
|
||||||
if (urls)
|
if (urls)
|
||||||
*urls = NULL;
|
*urls = NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user