Why does Cocoa return an empty string occasionally? - Stack Overflow most recent 30 from stackoverflow.com2010-03-16T06:16:40Zhttp://stackoverflow.com/feeds/question/608608http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/608608/why-does-cocoa-return-an-empty-string-occasionally0Why does Cocoa return an empty string occasionally?Stephen Darlingtonhttp://stackoverflow.com/users/29982009-03-03T22:59:28Z2009-03-21T18:21:35Z
<p>I have some code in my application that looks something like this:</p>
<pre><code>char *hash = (char*) sqlite3_column_text(get_bookmark, 0);
NSString* postHash = [NSString stringWithUTF8String:hash];
</code></pre>
<p>This works for me every time; I've never seen it <em>not</em> work. Most of my users do not experience problems (as far as I know). However I find that <code>postHash</code> is an empty string (<code>@""</code>) for some users some of the time.</p>
<p>Can anyone explain why?</p>
<p>Some more context/speculation:</p>
<p>This only seems to happen on jailbroken handsets. Is there anything different about them? I gather that there's usually less memory available. Anything else that could contribute here?</p>
<p><code>postHash</code> is used in a table cell and is occasionally seen to be populated correctly so I'm reasonably confident that the database call <em>should</em> work. In fact, if the database also has an empty string it's because of a very similar piece of code so the question remains.</p>
<p><code>hash</code> is certainly returning with a non-NULL value. If I force a NULL here, the app crashes. Similarly, <code>postHash</code> is not <code>nil</code> as that would also crash the app (for the same reason).</p>
<p>I am thinking that this is possibly memory related. If the method tries to allocate too much memory before <code>-didReceiveMemoryWarning</code> can get called what happens? I know that, at some point, the Springboard ejects the app. But is it possible that Cocoa returns a null string here rather than the expected value? I've heard of a few reports that, as far as I can tell, can only have been caused by an empty string being present where something longer should have been present.</p>
<p>Any other speculation, theories or ideas welcome.</p>
http://stackoverflow.com/questions/608608/why-does-cocoa-return-an-empty-string-occasionally/608621#6086213Answer by Peter Hosey for Why does Cocoa return an empty string occasionally?Peter Hoseyhttp://stackoverflow.com/users/304612009-03-03T23:04:13Z2009-03-03T23:04:13Z<blockquote>
<p>However I find that <code>postHash</code> is an empty string (<code>@""</code>) for some users some of the time.</p>
<p>Can anyone explain why?</p>
</blockquote>
<p>Because <code>hash</code> is an empty string (<code>hash[0] == '\0'</code>).</p>
http://stackoverflow.com/questions/608608/why-does-cocoa-return-an-empty-string-occasionally/669715#6697151Answer by Stephen Darlington for Why does Cocoa return an empty string occasionally?Stephen Darlingtonhttp://stackoverflow.com/users/29982009-03-21T18:21:35Z2009-03-21T18:21:35Z<p>I finally found the solution to this. I'm going to give Peter the accepted answer as he is right but the reason that I was getting an empty string is... interesting.</p>
<p>The database <em>is</em> populated correctly. The query is also correct. The difference between my phone and my users is that they have jail broken handsets. And apparently jail broken iPhones sometimes use a different version of SQLite than found in shipping versions of iPhone OS.</p>
<p>The change in version exposed a bug in my code that caused one of the parameters to be set incorrectly and <code>sqlite3_column_text</code> to return an empty string.</p>