Hello stackers,
in https://rt.cpan.org/Ticket/Display.html?id=37194#txn-641389 I reopened a bug concerning a Perl crash in conjunction with the libreadline XS bindings. I attached the necessary debug information, but until now there has been no acknowledgement from the maintainer. I want this finally fixed; it's a major inconvenience to...
Hi All,
I am new with xCode and objective C.
I am using NSXMLParser to parse my xml data and then saved it to sqlite database.
Following is my code to start xml parsing.
NSXMLParser *xmlParser = [[NSXMLParser alloc] initWithData: data];
[xmlParser setDelegate: self];
[xmlParser setShouldResolveExternalEntities: YES];
[xmlParser parse...
Hello,
I try to convert an existing 32-bit XLL to a 64-bit version in order to run under Excel 2010 64-bit.
But when I try to run it under Excel it crashes Excel.
It crashes when I do a Excel4(xlfRegister, result, 7, x0, x1, x2, x3, x4, x5, x6);
with XLOPER parameter (not XLOPER12).
Do you know if I can still use Excel4 in 64-bit ? If i...
The remote desktop server is XP professional version 2002 SP3
Our program is written in MS visual C and calls into a dll written inmanaged .NET C++ code. All the code is written is Visual studio 2008.
running ntsd I get two different outputs for the last few lines of "Executable search path"
non-crash case:
.....snipped up to LAST l...
I have an Android app modeled after the LunarLander example by Google.
I am debugging it on a real device, (Motorola Droid) with Android 2.0.
When the orientation changes, the program crashes on a null pointer Exception.
Logcat from just before crash:
02-01 00:24:27.956: DEBUG/nate(8358): Starting Game
02-01 00:24:36.878: DEBUG/dalvi...
Visual Studio 2008 has been running well for quite awhile now. I've used it for web, console, windows form, WPF, WCF, and class library projects. All has worked, until today.
Now, whenever I try to start a new windows form project (regardless of .NET version), it crashes with the message,
vshost.exe has encountered a problem
and...
Hey guys, I have been hitting my head against the wall trying to figure this out for two days with no luck. I have a basic UIWebview that is navigating to a page. That page has a Javscript function that seems to crash the UIWebView but works just fine in safari. I am at a loss. I get the following crash error:
2010-02-03 08:30:16.5...
Basically the problem is exactly what the title says.
My app works smoothly on the simulator, with no crashes whatsoever.
In fact, the previous version is on the app store. I made minor changes here and there and suddenly it started to crash in a very odd place.
I use [NSBundle mainBundle] resourcepath] in various places in the code to...
I create a UIActionSheet with button texts from a txts file. After I set NSZombieEnabled, NSDebuEnabled to YES and NSDeallocateZombies to NO, I get a breakpoint with the message:
* -[CFString isEqual:]: message sent to deallocated instance 0x11fae00
This happens after showing for the third or fourth time the UIActionSheet, not imm...
Hi.
I have a problem with my application for the iPhone.
It's a tab based application. In one of the tabs, I have a Table View. I have set it up to load in data from a PLIST.
My problem is that when I try to build and run it, the application either crashes, or stays at a black screen with the error message "Terminating app due to uncau...
I've ran into a problem. Everytime I'am starting my app it crashes. Heres me code.
The Debugger Says: [list count] crashes the app. I have no idea. NSLog(@"%@", self.list); gives me one item as expected...
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
data = [[NSData alloc] initWithContentsOfFile:filePath];
unarc...
Hello, I tried to install and run one of my applications on device. On a simulator, it was working fine. But once on device, it crashes somehow. I was trying to debug but i could not get anything there.
Here is what the debugger console shows.. Can someone please help me with this..:
Here is the debugger log:
Program received signal EXC...
Hi all
I simply try to delete a row from a uitableview with the following code:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
[self.tableView deleteRowsAtInde...
// When row is selected
- (void)pickerView:(UIPickerView *)pickerTimer didSelectRow:(NSInteger)row inComponent:(NSInteger)component {
int minutes;
int seconds;
if (component == 0) {
if (row < 0){
minutes = row;
} else {
minutes = 0;
}
}
if (component == 1) {
...
I am having an issue where in reordering my UITableViewCells, the tableView is not scrolling with the cell. Only a blank row appears and any subsequent scrolling gets an Array out of bounds error without any of my code in the Stack Trace. Here is a quick video of the problem.
Here is the relevant code:
- (BOOL)tableView:(UITableView ...
Hey all, I'm in the process of debugging a C++ app on mac os 10.5. Occasionally, I'll do something bad and cause a segfault or an otherwise illegal operation. This results in the app hanging for a while, and eventually a system dialog notifying me of the crash. The wait time between the "hang" and the dialog is significant; a few minutes...
Hello
I've got (the currently latest) jdk 1.6.0.18 crashing while running a web application on (the currently latest) tomcat 6.0.24 unexpectedly after 4 to 24 hours 4 hours to 8 days of stress testing (30 threads hitting the app at 6 mil. pageviews/day). This is on RHEL 5.2 (Tikanga).
The crash report is at http://pastebin.com/f639a6cf...
Heres one scan of Wapiti. I notice when i had images uploaded (users can upload) i get a crash before Launching module crlf. So just using a fresh instance of my site i ran this and got the result below.
My questions are
1. How do i fix the crashes
2. How might i find out what is causing the crash. I used -v 2 to figure out the url and ...
I want to create a core dump whenever my process crashes. Currently I am following this approach:
Build a special "debug" version of the program using "-g" of gcc/g++.
Execute "ulimit -c unlimited"
Now we get the core dump whenever the program crashes.
But I want to minimize the number of steps so that:
Core dump should always get ...
Hi all ,
This is my second problem today, pointers are giving me nightmares .
I'm trying to make a program that do the same thing that strcpy() function do..
Once i try it..it crashes and i'm 100% sure that's a pointers issue in my code. I think because there is some sort of an unintiallized pointer(*copied) ..But i've assigned NULL to i...