| 40020:76afb08714b4 | 40021:6b1b05adda03 |
|---|---|
| 102 | 102 |
| 103 if (p->next) | 103 if (p->next) |
| 104 len += 1; | 104 len += 1; |
| 105 } | 105 } |
| 106 | 106 |
| 107 res = malloc(len + 1); | 107 res = g_malloc(len + 1); |
| 108 | 108 |
| 109 if (res == NULL) | 109 if (res == NULL) |
| 110 return NULL; | 110 return NULL; |
| 111 | 111 |
| 112 out = res; | 112 out = res; |