On Mon, Dec 02, 2019 at 12:51:05PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang <lance.lmw...@gmail.com> > > Signed-off-by: Limin Wang <lance.lmw...@gmail.com> > --- > libavformat/utils.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/libavformat/utils.c b/libavformat/utils.c > index 8196442dd1..03a3705200 100644 > --- a/libavformat/utils.c > +++ b/libavformat/utils.c > @@ -4854,11 +4854,10 @@ int ff_mkdir_p(const char *path) > return -1; > } > > - if (!av_strncasecmp(temp, "/", 1) || !av_strncasecmp(temp, "\\", 1)) { > + if (*temp == '/' || *temp == '\\') > pos++;
> - } else if (!av_strncasecmp(temp, "./", 2) || !av_strncasecmp(temp, > ".\\", 2)) { > + else if (*temp == '.' && (*(temp+1) == '/' || *(temp+1) == '\\')) is this really simpler ? (compared to strncmp() for example) ? it looks more obfuscated also not sure about the {} removial [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB No human being will ever know the Truth, for even if they happen to say it by chance, they would not even known they had done so. -- Xenophanes
signature.asc
Description: PGP signature
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".