From a5ef549b81ff5ec5e43f57931426de71501a8033 Mon Sep 17 00:00:00 2001 From: Dragos Oancea Date: Tue, 28 Jan 2020 23:16:02 +0000 Subject: [PATCH] [core] scan-build: Value stored to 'len' is never read --- src/switch_core_video.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/switch_core_video.c b/src/switch_core_video.c index 28b6229315..5f6d4902ef 100644 --- a/src/switch_core_video.c +++ b/src/switch_core_video.c @@ -2134,7 +2134,6 @@ SWITCH_DECLARE(switch_image_t *) switch_img_write_text_img(int w, int h, switch_ char *argv[6] = { 0 }; switch_rgb_color_t bgcolor = { 0 }; int pre_width = 0, width = 0, font_size = 0, height = 0; - int len = 0; char *duptxt = strdup(text); switch_img_txt_handle_t *txthandle = NULL; switch_image_t *txtimg = NULL; @@ -2178,11 +2177,6 @@ SWITCH_DECLARE(switch_image_t *) switch_img_write_text_img(int w, int h, switch_ while (*txt == ' ') txt++; while (end_of(txt) == ' ') end_of(txt) = '\0'; - len = strlen(txt); - - if (len < 5) len = 5; - - switch_img_txt_handle_create(&txthandle, font_face, fg, bg, font_size, 0, NULL); pre_width = switch_img_txt_handle_render(txthandle,