My first guess would be that you're overrunning the stack.  Particularly if
t_TikTokPrefs is a large object, since you're allocating it on the stack in
what you say is your "deepest function".

Try allocating memory by using MemHandleNew or DmNewHandle, instead of on
the stack, particularly if your app isn't the currently running one (and
thus you can't rely on having as much stack available).

-David Fedor
Palm Developer Support


Reply via email to