merge conflict fix

This commit is contained in:
Enno Rehling 2017-10-13 19:35:12 +02:00
parent 78360b1466
commit 5a40ff9e62
1 changed files with 2 additions and 2 deletions

View File

@ -207,8 +207,8 @@ static int create_data(keyword_t kwd, const char *s,
/* TODO: between mkdata and odata_release, this object is very
* short-lived. */
mkdata(&data, strlen(s), s);
id = odata_save(kwd, data);
release_data(data);
id = odata_save(data);
odata_release(data);
return id;
}