[FFmpeg-cvslog] fftools/ffprobe: Don't cast const away needlessly

Andreas Rheinhardt git at videolan.org
Sun Feb 25 03:41:02 EET 2024


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Thu Feb 22 00:55:43 2024 +0100| [0f20e48e3d3efbb012d16bd2a26a68f7c98bb8ea] | committer: Andreas Rheinhardt

fftools/ffprobe: Don't cast const away needlessly

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0f20e48e3d3efbb012d16bd2a26a68f7c98bb8ea
---

 fftools/ffprobe.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
index aa1153e709..95643f9a23 100644
--- a/fftools/ffprobe.c
+++ b/fftools/ffprobe.c
@@ -789,7 +789,7 @@ static inline int validate_string(WriterContext *wctx, char **dstp, const char *
     av_bprint_init(&dstbuf, 0, AV_BPRINT_SIZE_UNLIMITED);
 
     endp = src + strlen(src);
-    for (p = (uint8_t *)src; *p;) {
+    for (p = src; *p;) {
         uint32_t code;
         int invalid = 0;
         const uint8_t *p0 = p;



More information about the ffmpeg-cvslog mailing list