Hello
I'm responsible for maintaining a java swing application. It used to run quite fine with java 1.4, but with the time we encountered more and more crashes of the JRE that made us upgrade to the JRE 1.6, which at least is still maintained by Sun.
With the JRE 1.6 we now encounter a different kind of problem, in the part displaying ...
I'm trying to parallelize a number-crunching part of an application to make use of a quad-core architecture using OpenMP and GCC 4.2 on Mac OS 10.5. But what I think the problem is that this application uses Qt for the GUI and I'm trying to fork the worker threads on a secondary thread created by Qt which causes the program to crash - bu...
A description of the problem is as follows:
I have a view, say, view A. To enter certain data, I have an alert,with a text field inside it, which pops up. Once the user enters data into the text field, i have an alertView:didDismissWithButtonIndex: function as follows :
- (void)alertView:(UIAlertView *)alertView:didDismissWithButtonInd...
Hello,
I'm testing my app on simulator 3.1.3, it runs fine.
When it come to simulator 3.2, it crashes right from the beginning:
2010-06-24 16:35:29.208 MyTestApp[6991:207] *** Terminating app due to uncaught exception 'NSGenericException', reason: 'This coder requires that replaced objects be returned from initWithCoder:'
2010-06-24 16...
Hi
Iam fighting with this for the past 48 hours searching all forums with no use.
Iam using NSURLConnection asynchronous to download a series of web files,
it randomly crashes ( after downloading a few files which is not fixed).
Please see the call stack below:
0 0x35b634f4 in objc_msgSend
1 0x3527c2ca in CFEqual
2 0x3532e750 in __CFB...
I've spent two days on this and I still can't find the cause of the crash.
I know it has something to do with trying to access an object that has been freed but I don't know which access or which object.
Whenever I google trying to find the source of EXC_BAD_ACCESS people suggest using NSZombies. The problem is when I enable zombies...
Previously, on iPhone OS 3.2 with XCode 3.2.2 this used to work fine.
I have created a small test to prove it. An NSManagedObject with 2 attributes, "group" and "vaue". Both strings.
When setting up an NSFetchedResultsController to be used in the TableViewController, I set up the setFetchLimit on the request and I set the sectionNameK...
I just opened an iPad app I'd been working on and it was working fine, until now. I open it and the screen remains black, even after it's loaded! It's an OpenGL and I just downloaded the iOS4 SDK. I also added a provisioning profile. Would any of these changes result in a completely black screen with no error for no reason at all?
It lo...
I've the hellish problem of a third party DLL appearing to cause a recursive stack overflow crash when it gets unloaded. I wind up with this pattern on the stack (using windbg):
<Unloaded_ThirdParty.dll>+0xdd01
ntdll!ExecuteHandler2+0x26
ntdll!ExecuteHandler+0x24
ntdll!KiUserExceptionDispatcher+0xf
<Unloaded_ThirdParty.dll>+0xdd01
ntdll...
Hi,
Currently I am trying to add a preference activity into my application
but found out that I couldn't make it works.
Every time, I tried to start the preference activity but it just crash before showing anything.
Here is the manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/...
I have two problems with image upload in FCKeditor.
I.
The folder for uploaded files is "user" and it situated in the root of the web-site.
There are two ways to upload image in FCKeditor:
1. Insert/Edit Image - Browse Server - Upload a new file in this folder - Upload. Image is uploaded to the folder "Image", which situated in the fold...
What could be the possible causes of exception in calling CoUninitialize().
Our product is using COM and some of WER crash reports are pointing to CoUnInitialize().
WER systems name it as Special Exception.
Any pointers?
...
Hi all,
I just installed the new XCode with iPhone SDK 4.0. On my project, I set version 4.0 as my base version, as deployment target, 3.0 is selected.
Before the update, everything went fine. Now, if I run the iPad simulator, everything still works fine. But when I try to run it in the iPhone simulator, the app crashes before the star...
For security reasons my company has our development environment set up offline and we have yet to get approval to run windows 7 on those PCs so we're running XP. A few of my coworkers and I have installed VS 2010 and begun a little development in it, however we've found that the IDE crashes at some point during the building process with...
hi
sorry for the wired title. couldnt find a better one
my app is live and it seems like the app crashes on some diffrent devices (3gs ios4 jailbreak - no jailbreak )
the app uses
- internet
- writes textfile to phone
- reads date from the phone
i dont know how i can solve this problem best.
maybe someone can help me or point me to a...
Hi,
I created a view controller with a png image and a long jpg background (it's width is twice the width of the iPad - 2048px). moving the png image makes the background image to move to the left in a seamless manner. see this image for an illustrative reference:
image
When playing with it on the iPad, it crashes anytime I move it mo...
I have an App with a Navigation Controller, several sub Controllers.
With XCode Debug I can't find any errors.
With iPhone running unplugged, I can't find any errors.
With Instruments running the App on Simulator it doesn't crash.
With Instruments running the App on iPhone it crashes when I click forth and back between certain ViewCont...
I have an unmanaged DLL written by another developer in unmanaged C++. My application is a WinForms application written in C#. I am using interop to call a method (function) in the native DLL. The call is causing my application to crash upon executing the method.
How does one safely call a method using interop, so that it does not bring...
Hello all,
I encountered an AudioToolbox crash in my application. Here's the crash log, http://paste.uni.cc/20775
And I'm using AudioToolbox + OpenAL to play music (m4a) and sound (wav). It happens only on stressed device. So I can't tell what's wrong with it. The crash log didn't report not enough memory, but instead of that, ...
I am writing a PCIe device driver. With PCIe I have a storage device connected. I have allocated a buffer in memory using malloc() which I use to transmit data to and receive from my hardware. The buffer area is locked and the physical addresses of the locked pages are passed to the DMA, I have in my hardware. DMA uses physical addresses...