I had a working MFC application (a dialog application), I deleted some of its button and added a new button, but now when it closes the application crashes. It fails in one of ASSERT() macro. The debug assertions fails on these lines
File: afxtempl.h
Line: 558
When I view that code it was something like this
template<class TYPE, class...
Hi,
I have created an ISAPI filter.
It works fine on develpoment server and SIT server.
But in production server it doesn't works.
In event viewer the following log :
Reporting queued error: faulting application w3wp.exe, version 6.0.3790.2825, faulting module msvcr80.dll, version 8.0.50727.3053, fault address 0x00046039.
...
I run an Qt app I've built:
./App
Segmentation fault
I run it with strace:
strace ./App
execve("./App", ["./App"], [/* 27 vars */]) = 0
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
+++ killed by SIGSEGV +++
Process 868 detached
Again, no useful info.
I run it with gdb:
(gdb) run
Starting program: /root/test/App
Reading symbols fr...
Hi, this is for an assignment at school, where I need to determine the size of the processes on the system using a system call. My code is as follows:
...
struct task_struct *p;
struct vm_area_struct *v;
struct mm_struct *m;
read_lock(&tasklist_lock);
for_each_process(p) {
printk("%ld\n", p->pid);
m = p->mm;
v = m->mmap;
...
Hey everyone,
I can't manage to make my code symbolicated ... I read the part "below" :
Given a crash report, the matching
binary, and its .dSYM file,
symbolication is relatively easy. The
Xcode Organizer window has a tab for
crash reports of the currently
selected device. You can view
externally received crash reports ...
I have a batch file which starts multiple instances of simple console application (Hello World!). I work on Windows server 2008 64-bit. I configure it to run in TaskScheduler, at startup, and whether user is logged-in or not. The later configuration means that the instances will run without GUI (i.e. - no window).
When I run this task, ...
This is an issue I had with VS 2010 RC and was hoping would be solved with the first official release. Sadly it wasn't.
What I have is a number of reports originally created with VS 2008. When opening any of these for editing in VS 2010's Report Designer VS hangs for about two minutes and then shuts down. Same happens when creating a ne...
Has anyone had difficulty getting what has otherwise been a solid iPhone app working on the iPad? I was under the impression that iPhone apps would run without problems on the iPad. We are are experiencing crashes (not intermittent - same place, at same time) that we've never gotten on the iPhone or iPod Touch. I have become suspicious ...
I'm so tired of this happening. I'm working in Visual studio using C++, and go a little to far in developemnt before attempting a release build/run cycle, only to find my release build crashes. It leaves me no way to fix the problem beyond to hack out big chunks of code looking for all potential violators. Anyway, If I go into my "relea...
I have a C++ object that I'm getting the reference to in my view controller like this:
m_applicationEngine = (ApplicationEngine *)[(GLView *)[self.parentViewController view] m_applicationEngine];
In my location delegate I call a methid in the class like this:
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(C...
Is it possible to create a program that determines what applications have just recently crashed?
An example.
I open mozilla, and I open power point, but power point crashes.
Using a program, can I check what programs recently crashed?
Thanks in advance
-Kevin
...
Hi,
I ran the memory allocation tool and found that the "overall bytes" starts at 3.0 MB and reaches more than 120 MB when I navigate through screens (consist of UIViewControllers, buttons ...etc). And also, the number of "living bytes" shows around 20~25MB and the application gets crash at that point. Here are some points about my app...
Hello everyone,
I'm working on VB6 project where I need to have keyboard short-cuts for Buttons on Toolbar Control. To accomplish this, I have used Win32 Hooks library from vbAccelerator. Here's my IWindowsHook_HookProc function, that I use to retrieve Key strokes & perform action based on pressed short-cut (Ctrl+N for New, Ctrl+O for O...
We have a c++ application (console) that runs on windows and unix.
This application used output files to output verbose log files of system calls/prints/etc.
The prblem is, that in certain occasion we might get signal 11/2 after new features are added.
Now whenever, that happenes, we do not get 'almost complete' information from log f...
When clicking on print button the second time from my app, IE 6.0 is crashing.
Steps to reproduce:
1) Click on print Button and cancel the print dialog.
2) Click on print again. IE 6.0 crashes.
It works fine in IE 7 & 8.
Below is the stack trace i got from WinDbg.
Microsoft (R) Windows Debugger Version 6.11.0001.404 X86
Copyright...
I have the iPhone crash report and I am not able to get what is the problem with that. So, Can any one know what is the problem in the crash report?
Incident Identifier: 0C9E5908-BDA9-43B9-8D83-E2EF5E9B75A7
CrashReporter Key: 9cee5ee1497f05fb45986268e8ab8e42fcf2272d
Process: GRAHAM [94]
Path: /var/mobile/Application...
I downloaded xcode 3.2 and the iphone sdk 4.1, which has been working wonderfully, until a few days ago. For some reason whenever I open interface builder by clicking on a xib file all the pictures in the buttons and imageviews display a big blue question mark, and then interface builder gives me this:
Assertion Message: An uncaught exc...
I just installed VS 2010 and had no errors, but whenever I'm in the code editor and try to select text, either by CTRL-A, SHIFT-ARROW or click and drag the program crashes.
Here is the debug info:
EventType : clr20r3 P1 : devenv.exe P2 : 10.0.30319.1 P3 : 4ba1fab3
P4 : uiautomationprovider P5 : 4.0.0.0 P6 : 4ba1f837...
My Map activity crashes on launch. I have included all the permission and also tested on a new standalone map project where it worked perfectly well with the underlying code.
Rather when I incorporate the same code in my application, it crashes as soon as this activity is invoked. I have a project submission tomorrow morning, so please ...
I have a menu scene, help scene, settings scene and game scene. When i enter into game scene, it loads some data string from a .plist file into a NSMutableArray. I am doing this reading and loading procedure as follows-
+ (void) addObjectsToArray:(NSMutableArray*) mutableArray fromFile:(NSString*) filePath
{
NSString *bundle = [[NSB...