Hi all,
I got the following crash logs after my app crashes:
0 libobjc.A.dylib 0x000034f4 objc_msgSend + 20
1 UIKit 0x000a9248 -[UITableView(UITableViewInternal) _createPreparedCellForGlobalRow:withIndexPath:] + 644
2 UIKit 0x000a8eac -[UITableView(UITableViewInt...
Hi,
I'm developing a game and when I do a specific action in the game, it crashes.
So I went debugging and I saw my application crashed at simple C++ statements like if, return, ... Each time when I re-run, it crashes randomly at one of 3 lines and it never succeeds.
line 1:
if (dynamic) { ... } // dynamic is a bool member of my class...
Hi
We have a unmanaged C++ TCP server application running as a Windows service that is silently crashing after few days of run on Win2003 server. There is no Dr. Watson log file getting generated (no issue with Dr. Watson log as it catches other crashes in same application). Due to lack of Dr. Watson log file, we are unable to progress ...
Having recently installed the 4.0 SDK, I recompiled a client project to test how it would run under the new OS. (Previously testing with 3.1.3 had no crashes and only one memory leak, duly reported to Apple, who were unable to reproduce on 4.0 beta 3, and so closed.)
Everything went very smoothly (no crashes during testing) until I deci...
A .Net 4.0 app keeps crashing for a user, but just for him, I could not reproduce the bug. He attached the WERInternalMetadata.xml file generated by the Windows Crash Reporter. By opening it I found out that it's a System.IO.FileNotFoundException that crashes the software, however, there are no functions called in that function that woul...
Hi,
I cannot delete/drop a crashed Innodb table. I get the following error:
ERROR 1051 (42S02): Unknown table ‘accounts’
And if I want to create it I get the following error:
ERROR 1005 (HY000): Can’t create table ‘accounts’ (errno: -1)
This happens on my server after an accidental power failure.
Regards
...
I have an app that is crashing on the iPhone, but only when it launched via Xcode.
I can see in the iPhone console log that the app receives a memory warning, and then there are some strange events like these:
Sun Jul 11 00:03:43 Matts-iPhone com.apple.launchd[1] (UIKitApplication:com.mycom.myapp[0x3f60][5591]) <Notice>: (UIKitApplicat...
Having some really weird problem and as beginner with c++ I don't know why.
struct DeviceSettings
{
public:
....somevariables
DXSize BackbufferSize;
....somemethods
};
struct DXPoint;
typedef DXPoint DXSize;
__declspec(align(16)) struct DXPoint
{
public:
union
{
struct
{
int x;
int ...
Hey everyone,
I'm trying to implement Ad Based Revenue into my iPhone app on iOS 4, I've tried iAd and been less than impressed with the revenue, mostly due to my app being targetted at the UK market where iAd is not yet serving Ads.
I've signed up for AdMob, downloaded the SDK and followed the included instructions with IBSupport step ...
Hi there!
I have a big problem since a few days that I can't solve.
First I have a login view controller with this code :
@implementation MMConnectionViewController
@synthesize login, password, activityIndicator, mainVC;
- (BOOL)textFieldShouldReturn:(UITextField *)aTextField
{
[aTextField resignFirstResponder];
[self performSel...
Hi!
I want show an animation with a negative image and a normal image.
To start, the getPhoto method is called and the user can get an image from library or take one with the camera.
When the animation is running I want to be able to set the image to a new one, but then the app crashes.
-(IBAction) getPhoto:(id) sender {
UIImagePi...
I'm working on an iPhone app, and I got this strange log sometimes when manipulating a map:
ImageIO_Free: ptr 0xdf0f000 got double released??? (16384 bytes)
If I countinue playing around, the app would crash.
I googled it, but haven't found anything interesting... So weird !
...
Hi, I have been searching for days on this topic and cannot come up with a straight answer on how to cut down on the launch time of my app. Can anyone take a couple minutes to interpret this crash log for me (or teach me how)? Cuz I have no clue and I have tried searching and even contacting Apple. Thanks so much in advance. This fo...
My app loads the Default.png file and then either crashes or goes black depending on which version I use. It ran fine in SDK3. I went to my console in xcode and found this...
Pending breakpoint 2 - ""OneAppDelegate.m":33" resolved
Pending breakpoint 3 - ""OneAppDelegate.m":82" resolved
Pending breakpoint 4 - ""OneViewController.m":57"...
I have an ASP.NET MVC web application which integrates a C# managed library of ours that loads unmanaged plugins to do some file processing. These unmanaged plugins in-turn rely on a few 3rd party libraries to do their dirty work; some of which are causing IIS to crash.
We use the exact same library in a desktop application which is abl...
I have a testing setup which runs an Application on OS X with a varying set of parameters, if/when the program crashes it's relaunched and continues from where it left off. However when the Application crashes OS X raises the “Application quit unexpectedly” dialog, I'd rather avoid this as it clutters the machine. Is there a way to inhib...
I am trying desperately to change the images on an OpenFlow instance with no luck.
I am kind of giving up so I am trying now to remove the instance and create a new one. But I can't avoid crashing the app.
The code to create it is:
AFOpenFlowView *of = [[AFOpenFlowView alloc] initWithFrame:CGRectMake(0, 100, 320, 380)];
[of setCenter:...
Hello, I'm having the following problem:
I'm developing a C# application which requires unsafe code to call an unmanaged c++ function. The structure is:
[StructLayout(LayoutKind.Sequential)]
unsafe struct DataStruct
{
public UInt16 index;
public UInt16 response;
public byte* addr; //this is a pointer to a byte array which s...
I think I may need to re-think my design. I'm having a hard time narrowing down a bug that is causing my computer to completely hang, sometimes throwing an HRESULT 0x8007000E from VS 2010.
I have a console application (that I will later convert to a service) that handles transferring files based on a database queue.
I am throttling th...
I'm trying to understand remote services at the moment and everything works fine, i can start the service and know how to communicate with it through the AIDL-interface. My problem is that the service seems to still run in the same process like the activity it was started from, because the activity crashes too, if there is an error throw...