Changeset b8c336b for lib/oauth.c


Ignore:
Timestamp:
2015-05-09T19:50:30Z (9 years ago)
Author:
dequis <dx@…>
Children:
ec8b369
Parents:
356e2dd (diff), 5014380 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'develop' into feat/hip-cat

Conflicts:

protocols/jabber/hipchat.c
protocols/jabber/iq.c
protocols/jabber/jabber.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/oauth.c

    r356e2dd rb8c336b  
    9696{
    9797        int key_len = strlen(key);
    98         GSList *l;
     98        GSList *l, *n;
    9999
    100100        if (!params) {
     
    102102        }
    103103
    104         for (l = *params; l; l = l->next) {
     104        for (l = *params; l; l = n) {
     105                n = l->next;
    105106                char *data = l->data;
    106107
Note: See TracChangeset for help on using the changeset viewer.