X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Fltt%2Fparser.c;h=b6561ca57793f38c48ad6837680bd924aefa5b7e;hb=803229fa9f8f2540b24d31fa1bbaf70d5a6f597e;hp=6b0fbd621a3b16b8b3b74881bfba084d1d7b6461;hpb=bf410332ab2ecaa3f97201b5741e8a38286df98d;p=lttv.git diff --git a/ltt/branches/poly/ltt/parser.c b/ltt/branches/poly/ltt/parser.c index 6b0fbd62..b6561ca5 100644 --- a/ltt/branches/poly/ltt/parser.c +++ b/ltt/branches/poly/ltt/parser.c @@ -263,7 +263,7 @@ void parseFacility(parse_file *in, facility * fac) fac->name = allocAndCopy(getNameAttribute(in)); getRAnglebracket(in); - fac->description = allocAndCopy(getDescription(in)); + fac->description = getDescription(in); while(1){ getLAnglebracket(in); @@ -311,7 +311,7 @@ void parseEvent(parse_file *in, event * ev, sequence * unnamed_types, getRAnglebracket(in); //... - ev->description = allocAndCopy(getDescription(in)); + ev->description = getDescription(in); //event can have STRUCT, TYPEREF or NOTHING getLAnglebracket(in); @@ -359,7 +359,7 @@ void parseFields(parse_file *in, type_descriptor *t, sequence * unnamed_types, f->name = allocAndCopy(getNameAttribute(in)); getRAnglebracket(in); - f->description = allocAndCopy(getDescription(in)); + f->description = getDescription(in); // getLAnglebracket(in); @@ -497,10 +497,9 @@ type_descriptor *parseType(parse_file *in, type_descriptor *inType, free(str); str = appendString(str1,token); free(str1); - sequence_push(&(t->labels),allocAndCopy(str)); - free(str); + sequence_push(&(t->labels),str); }else - sequence_push(&(t->labels),allocAndCopy(str)); + sequence_push(&(t->labels),str); getForwardslash(in); getRAnglebracket(in); @@ -579,7 +578,8 @@ type_descriptor * find_named_type(char *name, table * named_types) t->type_name = allocAndCopy(name); t->type = NONE; t->fmt = NULL; - table_insert(named_types,allocAndCopy(name),t); + table_insert(named_types,t->type_name,t); + // table_insert(named_types,allocAndCopy(name),t); } return t; }