Skip to content
Snippets Groups Projects
Commit 43f0177a authored by Howard Chu's avatar Howard Chu
Browse files

Fix prev commit, attrs_dup left a_desc uninit'd

parent eb47d50d
No related branches found
No related tags found
No related merge requests found
......@@ -250,6 +250,7 @@ attrs_dup( Attribute *a )
anew = attrs_alloc( i );
for( tmp=anew; a; a=a->a_next ) {
tmp->a_desc = a->a_desc;
attr_dup2( tmp, a );
tmp=tmp->a_next;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment