How to free a C struct with Objective-C? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T07:36:55Z http://stackoverflow.com/feeds/question/425205 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/425205/how-to-free-a-c-struct-with-objective-c 0 How to free a C struct with Objective-C? Ariel Malka 2009-01-08T17:45:21Z 2009-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(&amp;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#425211 5 Answer by JS Bangs for How to free a C struct with Objective-C? JS Bangs 2009-01-08T17:47:53Z 2009-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#425214 10 Answer by Kyle Cronin for How to free a C struct with Objective-C? Kyle Cronin 2009-01-08T17:48:48Z 2009-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-&gt;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-&gt;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>