I have been working on my app and it runs on the simulator fine. I loaded it into my phone and now I have a problem. It runs fine when I first start it and also if I pick home and then restart it; however, if I use the back arrow and then restart it it crashes on that time, but will work out the next time I start it. I think it has to...
Hi guys.
I made a website using AJAX (with jquery) for the navigation.
The pages of the site are sliding and I use remove() to destroy the old page.
Every thing seems alright, but some times the browser crashes when he tries to remove the old page containing a Flash object.
I suppose this is because Flash is still executing the Flash ...
Hey.
My code crashes at this function (at the stringByAppendingFormat: with error objc_msgSend() selector name: stringByAppendingFormat).
This is that line:
// imagesPath = ...iPhone Simulator/4.0/Applications/NUMBERS/Documents/images
UIImage *image = [[UIImage alloc] initWithContentsOfFile:[imagesPath stringByAppendingFormat:@"/%...
Hi,
I have a piece of code that runs in debug mode in VS2008, C++.
The problem is that when I am debugging the code line by line, at a very weird point of the code, it crashes and says:
debug assertion faild.
Expression: _BLOCK_TYPE_IS_VALID(pHead->nBlockUse)
The crash point is on the first closed curly bracket (after mesh->edges[e]....
I'm trying to crash my WPF application, and capture the exception using the above new .NET 4 attribute.
I managed to manually crash my application by calling Environment.FailFast("crash");.
(I also managed to crash it using Hans's code from "How to simulate a corrupt state exception in .NET 4?".)
The application calls the above crashin...
Hi, here is the situation, i'm developping a Browser Helper Object (BHO) in C++ with Visual Studio 2008, and i learned that the memory wasn't managed the same way in Debug mode than in Release mode. So when i run my BHO in debug mode, internet explorer 8 works just fine and i got no erros at all, the browser stays alive forever, but as s...
I have a page with an iFrame whose source is an ashx page. The handler takes in 3 arguments through the query string and generates a text/html response containing a table. When the table gets >1700 rows it crashes the IE8 browser. The browser freezes and returns a null reference error.
If I take the html that is being rendered and pl...
I have an application that, as any other app, crashes once in a while for various reasons.
When it crashes, it does it gracefully and the users get a nice message of the crash. At the same time the crash is reported on the server for analysis so it can be fixed in future versions. However, I would like that the app keeps working through...
private void launchbutton_Click(object sender, EventArgs e)
{
launchbutton.Enabled = false;
Process proc = new Process();
proc.EnableRaisingEvents = true;
proc.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
//The arguments/filename is set here, just removed for privacy.
...
For some reason http://shirazraqs.com is causing mobile Safari to crash. I've never seen anything like it and it's 100% replicatable so it's a bug on the site.
I've already tried ripping out all of the javascript but the bug persists even then.
Any other troubleshooting advice? Better yet, has anyone heard of this? I've been unable ...
I'm trying to open a URL in Safari. It works fine for websites without Flash embedded, but crashes Safari for Flash sites.
Example (this WORKS):
tell application "Safari" to open location "http://google.com"
This CRASHES when Safari is not already running:
tell application "Safari" to open location "http://grooveshark.com"
Two thi...
Hi all,
I have an ImageMagick-based 32-bit C++ application. Under Windows 7 64-bit, it crashes within ImageMagic on any attempt to read a JPG file. A trivial example like this:
#include <Magick++.h>
int APIENTRY _tWinMain(...)
{
Magick::Image img;
img.read("D:\\a.jpg");
return 0;
}
crashes, too. The crash is within STL ...
I am building a scala web project using scala test, lift, jpa, hibernate, mercurial plugin, etc. I am getting instant crashes, where the ide just bombs, the window shuts down, and it gives no error messages whatsoever when I am doing any amount of copy/pasting of code. This started happening once my project got to about 100 unit tests.
...
Hi!
I'm experimenting with a piece of C code. Can anyone tell me why is VC 9.0 with SP1 crashing for me? Oh, and the code is meant to be an example used in a discussion why something like
void main (void)
is evil.
struct foo { int i; double d; } main (double argc, struct foo argv)
{
struct foo a;
a.d=0;
a.i=0;
re...
PC is shutting down during Lightmass/AO rendering only, CPUs never ovr 70c, Video Cards 65c..no overheating.... runs ANY game in 200+FPS : Unable to load image \SystemRoot\system32\ntoskrnl.exe, Win32 error 0n2*** ERROR: Module load completed but symbols could not be loaded for ntoskrnl.exe and the debugger gives me.Probably caused by : ...
Hello~
I retrieved the crash reports from iTunes Connect.
I referenced this site.
http://webcache.googleusercontent.com/search?q=cache:MmxwdXObZLMJ:www.anoshkin.net/blog/2008/09/09/iphone-crash-logs/+iphone+crash+debig&cd=2&hl=en&ct=clnk
I tried....
$ symbolicatecrash report.crash MobileLines.app.dSYM > report-with-symbo...
I'm working with an iPhone 3G, and when I'm trying to investigate memory leaks using the LEAKS instrument, my app crashes. It does not crash when LEAKS is not used.
I'm making no claim to having a bug-free or non-memory-intensive app here. But I'd like to investigate leaks on an actual device. When I'm running LEAKS it is incredibly slo...
How can I, from within a java program on windows, prevent a debugger window being displayed if a program I invoke crashes, and how can I detect the fact that it has crashed?
Background
I have a problem with a java application running on Windows which is launching an unreliable third party program by way of ProcessBuilder.start(). Speci...
Dear ladies and sirs.
My application throws InvalidCastException in the QA environment, something I cannot reproduce in development.
I wish to obtain the minidump at the exception moment. I know about adplus, but I am not sure how to use it so that it creates the minidump when InvalidCastException is thrown. Apparently, it does not dis...
Hi,
A java swing application(GUI) using JNI code to communicate with native C code. The Swing application launches properly and works fine.
The GUI is used to start some customized system level tests(io,memory,cpu) and show their progress. The tests have to be left running at-least overnight to get the
results. But, the next morning,...