On Wed, 15 Feb 2012 14:10:32 +0100
Juan Quintela wrote:
> Luiz Capitulino wrote:
> > Signed-off-by: Luiz Capitulino
>
>
> > /**
> > + * qdict_copy(): Build a new dictionary from an existing one.
> > + */
> > +QDict *qdict_copy(const QDict *from)
> > +{
> > +const QDictEntry *ent;
> > +
Luiz Capitulino wrote:
> Signed-off-by: Luiz Capitulino
> /**
> + * qdict_copy(): Build a new dictionary from an existing one.
> + */
> +QDict *qdict_copy(const QDict *from)
> +{
> +const QDictEntry *ent;
> +QDict *new;
> +
> +new = qdict_new();
> +
> +for (ent = qdict_first(fr