Fixed O(n) insertion of debug strings (bug 4495, r=fyren).

This commit is contained in:
David Anderson
2010-07-02 18:16:15 -07:00
parent f8c2629a3e
commit 7bc019547f
2 changed files with 17 additions and 12 deletions
+4 -1
View File
@@ -269,7 +269,10 @@ enum {
typedef struct s_stringlist {
struct s_stringlist *next;
char *line;
union {
char *line;
struct s_stringlist *tail;
};
} stringlist;
typedef struct s_stringpair {