Fix prev commit, attrs_dup left a_desc uninit'd

This commit is contained in:
Howard Chu 2006-12-01 15:00:10 +00:00
parent eb47d50da7
commit 43f0177a08

View File

@ -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;
}