How to free a C struct with Objective-C? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T07:36:55Zhttp://stackoverflow.com/feeds/question/425205http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/425205/how-to-free-a-c-struct-with-objective-c0How to free a C struct with Objective-C?Ariel Malka2009-01-08T17:45:21Z2009-01-09T00:38:11Z
<p>Given a struct, e.g.</p>
<pre><code>typedef struct
{
int value;
} TestStruct;
</code></pre>
<p>Why does the following code (in the context of an Objective-C class running on the IPhone) throw a "non-aligned pointer being freed" exception?</p>
<pre><code>TestStruct ts = {33};
free(&ts);
</code></pre>
<p>N.B. My uber goal is to use a C library with many vector-math functions, hence the need to find out some viable way to mix C and Objective-C</p>
http://stackoverflow.com/questions/425205/how-to-free-a-c-struct-with-objective-c/425211#4252115Answer by JS Bangs for How to free a C struct with Objective-C?JS Bangs2009-01-08T17:47:53Z2009-01-08T17:47:53Z<p>Because you are trying to free something that was allocated on the stack. The function free() can only be called on memory that was allocated with malloc().</p>
http://stackoverflow.com/questions/425205/how-to-free-a-c-struct-with-objective-c/425214#42521410Answer by Kyle Cronin for How to free a C struct with Objective-C?Kyle Cronin2009-01-08T17:48:48Z2009-01-09T00:38:11Z<p>It looks to me like you're trying to free a stack or static variable. You need to have malloc()'d something for it to be able to be free()'d.</p>
<p>Try this instead:</p>
<pre><code>TestStruct *ts = malloc(sizeof(TestStruct));
ts->value = 33;
free(ts);
</code></pre>
<p>For those more familiar with object-oriented languages, you might find it helpful to create a constructor:</p>
<pre><code>TestStruct *newTestStruct(int value)
{
TestStruct *ret = malloc(sizeof(TestStruct));
ret->value = value;
return ret;
}
</code></pre>
<p>This enables you to allocate a struct and set the values in one step. Just remember that this value should be freed once it's no longer useful:</p>
<pre><code>TestStruct *x = newTestStruct(3);
free(x);
</code></pre>