Convert everything from the talloc API to the ralloc API.

This commit is contained in:
Kenneth Graunke
2011-01-21 14:32:31 -08:00
parent dc55254f5b
commit d3073f58c1
67 changed files with 590 additions and 604 deletions

View File

@@ -30,7 +30,7 @@
s_symbol::s_symbol(const char *tmp, size_t n)
{
this->str = talloc_strndup (this, tmp, n);
this->str = ralloc_strndup (this, tmp, n);
assert(this->str != NULL);
}