Commit 19757f61 authored by Michael Niedermayer's avatar Michael Niedermayer

indent

Originally committed as revision 13251 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent fdf35f26
......@@ -141,10 +141,10 @@ char *av_strdup(const char *s)
{
char *ptr= NULL;
if(s){
int len = strlen(s) + 1;
ptr = av_malloc(len);
if (ptr)
memcpy(ptr, s, len);
int len = strlen(s) + 1;
ptr = av_malloc(len);
if (ptr)
memcpy(ptr, s, len);
}
return ptr;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment