Commit 27f3614d authored by michael's avatar michael

indent


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13251 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a9e55159
...@@ -141,10 +141,10 @@ char *av_strdup(const char *s) ...@@ -141,10 +141,10 @@ char *av_strdup(const char *s)
{ {
char *ptr= NULL; char *ptr= NULL;
if(s){ if(s){
int len = strlen(s) + 1; int len = strlen(s) + 1;
ptr = av_malloc(len); ptr = av_malloc(len);
if (ptr) if (ptr)
memcpy(ptr, s, len); memcpy(ptr, s, len);
} }
return ptr; 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