]> git.pld-linux.org Git - packages/rpm.git/blob - rpm-5.4.12-copy-Value-string.patch
fb2af38ca8b521a2604dde37bb016a6c00a8c75f
[packages/rpm.git] / rpm-5.4.12-copy-Value-string.patch
1 --- rpm-5.4.12/build/expression.c.strdup~       2013-07-31 18:10:52.556444318 +0200
2 +++ rpm-5.4.12/build/expression.c       2013-07-31 18:10:30.794081121 +0200
3 @@ -63,7 +63,7 @@ static Value valueMakeString(/*@only@*/
4  
5      v = (Value) xmalloc(sizeof(*v));
6      v->type = VALUE_TYPE_STRING;
7 -    v->data.s = s;
8 +    v->data.s = xstrdup(s);
9      return v;
10  }
11  
This page took 0.020013 seconds and 2 git commands to generate.