Hello, I have such code:
// Non singleton
class MyLogManager
{
void write(message) {Ogre::LogManager::getSingletonPtr()->logMessage(message);}
}
class Utils : public singleton<Utils>
{
MyLogManager *handle;
MyLogManager& getHandle { return *handle; }
};
namespace someNamespace
{
MyLogManager &Log() { return Utils::get_mutab...
IE 8 crashes with the following javascript but the same code works fine in IE6, IE7, IE8(IE7mode), FF3, Chrome and Safari. Has anyone run into this? Any known workarounds?
Thanks in advance,
-dk
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="h...
If I physically slide out the keyboard on my Moto Droid A855, it crashes my test app with the stack trace pasted below. I don't understand why?
Also, if I start my app with the keyboard out, my app crashes immediately on startup.
The app consists of an activity, which contains a viewflipper as the main view layout. The viewflipper co...
I'm filling an NSMutableArray from a CoreData call. I can get the first object, but when I try to get the count, the app crashes with Program received signal: “EXC_BAD_ACCESS”. How can I get the count?
Here's the relevant code - I've put a comment on the line where it crashes.
- (void)viewDidLoad {
[super viewDidLoad];
managedObjec...
I have a Silverlight App that has worked well in Debug and Release modes for weeks.
It still works well in Debug mode.
However, now when I run it in Release mode, it starts, shows me the screen, loads the data, then hangs, and the browser (Firefox) closes automatically. I've tried other browsers and each of them crashes, Chrome says "T...
Hi all,
My application is crashing when I'm launching it in Instruments. No message is shown when I'm pressing Ignore. What could be the reason behind this? The application is running fine in simulator.
...
I am using hash_map in application as
typedef hash_map<DWORD,CComPtr<IInterfaceXX>> MapDword2Interface;
In main application I am using static instance of this map
static MapDword2Interface m_mapDword2Interface;
I have got one crash dump from one of the client machines which point to the crash in clearing this map
I opened that cra...
Hello there!
I'm having a really hard time debugging one of our latest reported bugs. The problem occurs "randomly", not on every page load, sometimes I can "click" around for a minute or two before IE6/7 crashes. By crash I mean that the IE-window shuts down and I get the option to send the crash info to Microsoft.
In FF, Chrome, Safa...
I posted a similiar thread before here, but after further investigation I've found that the problem is with $.ajax jsonpCallback parameter.
In the following simple code it crashes every time on the 2nd request (cache problem?)
<html>
<head>
<title>Hello world</title>
</head>
<body>
<span id="ClickMe">Click Me</span>
</body>
<script s...
We use Visual Studio 2008, with visual source safe v8. Lately, I seem to be getting a lot more crashes than usual, mainly when viewing history (comparing, etc.).
I have taken a screencapture of the series of dialog boxes that will always appear, leading up to the crash:
http://img529.imageshack.us/img529/1360/msvscrash.jpg
Does anyone ...
After I've unarchived an object with NSKeyedUnarchiver, I am able to use it like usual, but I am unable to re-archive it. When I try, it crashes.
[NSKeyedArchiver archiveRootObject:unarchivedObject toFile:fileName];
I tried looking in the developer resources in apple but I haven't seen a thorough explination of proper usage of NSKeyed...
My developement environment is [Windows 7; visual studio 2010; x86].
I have a dll that was built for server 2003 long time back. When I use it in my project and follow new/delete sequence to use a class, application crashes during delete call. I verified the same even without any other call between new and delete. When I replace new/del...
I have CakePHP (1.3.2) running on UniformServer (basically a WAMPP server), and for some odd reason CakePHP makes the entire server crash when certain errors occur, forcing me to restart it. This is very annoying because not rarely a small typo results in a full minute of wasted time.
I haven't pinpointed the reasons yet, but it appears...
I got this crash log while querying an array of managed object, however, while running in the simulator it does not happen. Even in the device, sometimes it happens, sometimes not. Someone can explain to me why and what is the error?
Incident Identifier: 0ED2BB7C-5E8F-483B-AE08-8DE2C14D0C23
CrashReporter Key: e24b9614a897f92ee13ce00b7...
old question: "Why does creating a Toast crash my application?"
My application runs fine if I don't use toasts but if I want to create and show a simple Toast like this:
Toast SimpleToast = Toast.makeText(getApplicationContext(), "Just a toast.",Toast.LENGTH_LONG);
SimpleToast.setGravity(Gravity.TOP, 0, 0);
SimpleToast.show...
I just downloaded the crash logs for my app from iTunes connect and there are 6 of the same crashes that I do not understand. Here is what I think is the important part of the log (let me know if there is another part I should be looking at):
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x00000000, 0x00000000
Crashed Thread: ...
When you have a piece of software that runs an out of process COM server and the COM server crashes, will it show a message (let's say its an unhandled exception) to the user or what will happen?
Also, will the COM client crash too, knowing that this client relies on this COM Server quite a lot?
What's the behaviour in regards COM Serv...
My iPhone application crashes when and I do not know how to resolve it.
I have a secondary thread that does some cleanup (deletes objects). This cleanup is done on a second NSManagedObjectContext as apple recommend when doing stuff in another thread. When the cleanup is finished I merge the two contexts.
My problem is that my applic...
I developed an app with Xcode 3.2.3 and iphone SDK 4.0, it works fine on both iPhone 3GS and 3G if I run it directly with xcode.
However, if I download and install the app from appstore, it crashes at the launch screen for iPhone 3G and iPod Touch. (But works on 3GS with OS 3.1.3 or iOS 4.0)
The device log shows the following:
Except...
I have an Observer class and a Subscriber class.
For testing purposes, the observer creates a thread that generates fake messages and calls CServerCommandObserver::NotifySubscribers(), which looks like this:
void CServerCommandObserver::NotifySubscribers(const Command cmd, void const * const pData)
{
// Executed in worker thread //
...