- Timestamp:
- 2015-04-24T20:52:55Z (10 years ago)
- Branches:
- master
- Children:
- 40cfbc5
- Parents:
- 71074ac
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/oauth.c
r71074ac r1493c4b 96 96 { 97 97 int key_len = strlen(key); 98 GSList *l ;98 GSList *l, *n; 99 99 100 100 if (!params) { … … 102 102 } 103 103 104 for (l = *params; l; l = l->next) { 104 for (l = *params; l; l = n) { 105 n = l->next; 105 106 char *data = l->data; 106 107
Note: See TracChangeset
for help on using the changeset viewer.