# | Line 1382 | Line 1382 | add_isupport(const char *name, const cha | |
---|---|---|
1382 | dlinkAddTail(support, &support->node, &support_list); | |
1383 | } | |
1384 | ||
1385 | < | DupString(support->name, name); |
1385 | > | support->name = xstrdup(name); |
1386 | if (options != NULL) | |
1387 | < | DupString(support->options, options); |
1387 | > | support->options = xstrdup(options); |
1388 | support->number = n; | |
1389 | ||
1390 | rebuild_isupport_message_line(); |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |