[FFmpeg-cvslog] r25317 - trunk/libavformat/applehttp.c
mstorsjo
subversion
Sat Oct 2 23:58:13 CEST 2010
Author: mstorsjo
Date: Sat Oct 2 23:58:13 2010
New Revision: 25317
Log:
Reindent
Modified:
trunk/libavformat/applehttp.c
Modified: trunk/libavformat/applehttp.c
==============================================================================
--- trunk/libavformat/applehttp.c Sat Oct 2 23:57:58 2010 (r25316)
+++ trunk/libavformat/applehttp.c Sat Oct 2 23:58:13 2010 (r25317)
@@ -102,12 +102,12 @@ static void make_absolute_url(char *buf,
else
buf[0] = '\0';
while (av_strstart(rel, "../", NULL) && sep) {
- sep[0] = '\0';
- sep = strrchr(buf, '/');
- if (sep)
- sep[1] = '\0';
- else
- buf[0] = '\0';
+ sep[0] = '\0';
+ sep = strrchr(buf, '/');
+ if (sep)
+ sep[1] = '\0';
+ else
+ buf[0] = '\0';
rel += 3;
}
av_strlcat(buf, rel, size);
More information about the ffmpeg-cvslog
mailing list