A crash is the result of an unrecoverable error that causes the program to stop completely. During software development, crashes can be avoided by implementing proper error and exception handling.

learn more… | top users | synonyms (1)

0
votes
0answers
12 views

Oracle use memory without any processes

After Oracle instance crash there is no one running process, but memory still doesn't free. What need to do in Linux OS/Win?
0
votes
1answer
16 views

Crash on scrolling a fragment up/down continuously

I hope somebody has an idea since this issue is getting me out of mind. In my application I have an Activity that includes a fragment used to insert a new contact into the address book having the ...
-1
votes
0answers
28 views

CRASHING issue on getting data from Database

This is my function to get data from database . and some time it crashes with EXC_BAD_ACCESS and i am not getting what exactly is happening please help me mostly it crashes when it geting ...
0
votes
0answers
21 views

Writting in a textbox with VBA crashes the program

I have a VBA program which draws a wheel and a bunch of other shapes.It rotates the wheel by 3 degrees after each 50 milliseconds and moves other shapes around. I also have a form which has a textbox ...
0
votes
1answer
32 views

Fullscreen Android “Unfortunatly application has stopped” Why?

Hi yesterday wanted to implement in my application the fullscreen.. I found this code to do it: public class FullScreen extends Activity { @Override public void onCreate(Bundle savedInstanceState) { ...
0
votes
0answers
15 views

Facebook SDK Freeze My Server

I'm first time fb sdk user, I am creating my first app the idea is to iterate with for loop throught and array of 5 groups in users groups list, in this list I get the gid and later check the ...
0
votes
2answers
36 views

UITableView with images crashes app when I scroll down a lot

I have this simple UITableView and each cell has an image corresponding to it. All I'm doing is displaying a title for the image and the image itself in each cell. Here is my cellForRowAtIndexPath: - ...
-1
votes
0answers
12 views

DNS server crashed , how to move ASAP? [closed]

If Freebsd DNS server that served LAN of 100 people with static ip is crashed. How to move these 100 people to a new FreeBSD DNS server as quickly as possible?
0
votes
3answers
52 views

Large scale deletions from STL vector crashing my binary

My binary is crashing. On running the core dump, I found the following : #0 0x00a6a363 in memmove () from /lib/tls/libc.so.6 (gdb) frame 1 #1 0x083a108c in ...
0
votes
1answer
20 views

Android Browser crash on file input save

The Android browser crashes in a very simple scenario (I am testing on Galaxy S3, Android 4.1.2): I have a page with a text input and a file input (you can test it here http://jsbin.com/agugit/1/) ...
1
vote
0answers
27 views

Graphics driver crash - too many pixels as input?

I have an app where we are displaying on the earth/globe numerous data points which represent earthquakes along with location of occurance, the magnitude & color (red signifies major quake). Data ...
0
votes
1answer
24 views

iOS: Instruments, allocations peaking to a flat line

I'm trying to learn how to use instruments. I wonder is I can get some opinions or insight at to what is going on here. Firstly, shortly after 02:00 my app crashes due to creating many high ...
0
votes
0answers
17 views

How to get a complete crash log from PLCrashReporter

I decode the plcrash log from PLCrashReporter, but some information not complete: Incident Identifier: TODO CrashReporter Key: TODO ... Exception Type: SIGBUS Exception Codes: BUS_ADRERR at 0x1 ...
0
votes
1answer
16 views

Can you get a crash log from iTunes Connect when you build on an app you downloaded?

Can you get an iTunes Connect crash log when you download your app from the App Store and then build on that app using Xcode? Let's say I have a released version, and I download it from the app ...
0
votes
0answers
9 views

Visual Studio runs project in 'Release' mode but not 'Debug' mode

I am at a complete loss as to what is going on. This issue came out of nowhere I checked the output window, which got me this bit of information: MyApplication.vshost.exe: Managed (v4.0.30319)' has ...
0
votes
3answers
39 views

Thread safe and “Collection was mutated while being enumerated”

I have a class "Ad" where I set a static variable inside my Ad.m : static NSDictionary *citiesDict = nil; // class variable and in the same file I have implemented a class method that basically ...
0
votes
0answers
28 views

Assignment of implementation class of two interfaces inheriting

I have two interface classes (COM-like structure: class IBase { public: virtual void* QueryInterface (void) = 0; }; class IInterface : public IBase { public: virtual void DoSomething (void) ...
0
votes
0answers
17 views

Need a solution to Eclipse crash when loading javadoc

Whenever I hover over any code with information a window comes up with Java (TM) Platform binary has stopped working error and eclipse crashes. Plus the outline is not working either. Has anybody else ...
1
vote
0answers
21 views

android.database.sqlite.SQLiteException: Can't downgrade database from version 58 to 55 for android sms database

I get this crash in my android application when it tries to read the android sms database. The code for reading the android sms database is similar to the following snippet: String SMS_URI = ...
-1
votes
3answers
33 views

Android Button Intent crash

I am making button in ActionBar which would open me another class.. This is my MainActivity code: package com.example.menu; import android.os.Bundle; import android.app.ActionBar; import ...
0
votes
1answer
28 views

C# application crashes in Windows CE

I have some console C# application, which is working on Windows CE environment. This application start the other main application.This part is working. But also it have to detect when/if main ...
0
votes
0answers
34 views

Iphone Application crashing when running in iphone 4 with os 6.1.3

Devastating to hear from a user possessing iphone 4 with os version 6.1.3 is unable to run my application downloaded from app store i.e. it is crashing when launched.I have done rounds of testing ...
0
votes
1answer
41 views

Why can't I use relativeLayout as the parentView?

This is what I have for setContentView(R.layout.activity_main); and I don't understand why every time I run my app it crashes. <?xml version="1.0" encoding="utf-8"?> <RelativeLayout ...
2
votes
4answers
76 views

App started to crash

After sending out my update to App Store, the app crashes when downloading it from the App store, however debugging via Xamarin Studio works just fine. But now when trying to release/debug on my ...
2
votes
1answer
34 views

Why does respondsToSelector: exist?

Why do we have to manually check this every time we try to send a message to an object that might not respond to the message/selector? Why can't the language do the check for us every time a message ...
0
votes
0answers
16 views

cocos2dx 2.1.2 android crash on launch on device

I am using cocos2d-x 2.1.2 , i have completed working on my ios builds and now started with android build. I created the android project using create-android-project.bat and successfully compiled it ...
0
votes
0answers
18 views

Eclipse crashes with “Java heap space” error whenever i deals with GUI of layout.xml

my eclipse(for android) crashes with "java heap error" whenever i deals with GUI layout.xml -no doubt code compilation and run works fine n smothly. pc config- 2GB RAM pentium-dual codeCPU 2.80GHz 32 ...
0
votes
1answer
52 views

iOS app crashes crashes occasionally - Upon screen display or scroll down

My iOS app crashes upon a certain screen. That happens occasionally. The app crashes sometimes upon the appearance of the screen, or sometimes when we scroll down the screen. Here is the crash ...
-3
votes
0answers
30 views

Android Java: new socket crashing app [closed]

I'm getting the following error and have no idea what is causing it ? 05-20 10:58:59.425: I/System.out(26617): Network connection available 05-20 10:58:59.430: D/AndroidRuntime(26617): Shutting ...
2
votes
0answers
22 views

What does “internal” mean in windbg “!heap -a” output [duplicate]

I am using windbg command "!heap -a " to check the memory status, and get the following results. what does internal mean at the end of this entry "00d168f0: 03d20 . 06b48 [101] - busy (6b40) ...
0
votes
0answers
16 views

Prevent UIWebView from Freezing and Crashing After A Return to The App

My app uses the framework NimbleKit, which relies heavily on UIWebViews. Essentially there is only one large web view in the application, and thus it uses alot of memory. The issue is, after a user ...
1
vote
1answer
34 views

iOS app crashes on device not simulator: Im using an animation with 280+ images

ive read all the other similar questions/answers on this topic however im finding it hard to relate the answers to my problem. I have an animation of 280+ images that works(after a brief pause) on the ...
0
votes
1answer
31 views

Animations crash App after going into background

After looking for some feedback on how to clean up animations once they've finished I implemented the following; - (void)onAnimationComplete:(NSString *)animationID finished:(NSNumber *)finished ...
-1
votes
1answer
35 views

c++ non-comprehensible crashing behaviour

So I created this dll today and it's crashing for no reason... This works: testa++; testb++; const char *t = "test"; if (t == "adoinfosidnoxucnviune") { } This crashes at testb++: testa++; ...
0
votes
0answers
16 views

Bluetooth UUID from String Crashing

I am trying to listen for connections to my BluetoothServerSocket, but happens that the creation of the UUID is crashing the application.. Don't know why. private void listenServerSocket() { ...
1
vote
1answer
29 views

I've got a very strange crash during Android TextAdventure development

http://scr.hu/0eug/7vny2 The situation: I press a button that should launch this part of code (work in progress on this, it's not complete yet): public void playerattack1(View view){ ...
0
votes
1answer
37 views

How to return a String value to another class in regards to editText [duplicate]

I am trying to display a textValue inserted by the user from the main class to another class/window. On my main class I made this method public String retChoice() { choices[0] ="sasda"; ...
0
votes
2answers
85 views

EditText.getText().toString() crashes

In my android application , I have 3 dialogue boxes in which the user puts info into 3 editTexts and it will display the one of the data onto another class/page after it randomly picks which data to ...
0
votes
0answers
10 views

Android DatePickerDialog crash on 2.3

I have a DatePickerDialog on my application. I am using DatePickerDialog because I need to show only month and year and it's easier with dialog than datepicker. Its working fine in 4.0 or higher ...
0
votes
0answers
23 views

Java Virtual Machin crash when use JPL into Java

How come when I run a java progam which utilized the library JPL, crashes the JVM? The command JPL.setNativeLibraryDir must point directly to the folder of Yap? I set the path already at JPL, in ...
0
votes
0answers
24 views

Node.js file crashing

I am using a node.js file in server side for a multi-player game. The file crashes once in a day or two. How can I prevent the file crashing How can I save the data while crashing? How can we access ...
0
votes
2answers
40 views

Program crashes when listing out vector elements (C++)

I'm trying to list out the elements of four vectors with a pause after 15 lines of output, so far it does what i want, but it crashes at the end of the function. void List(vector<string> ...
0
votes
0answers
19 views

Android Jelly Bean USB plugged detection crashes

I have this code which checks if the USB is plugged to a power supply, it works after a fashion ie it gives the right Toast messsage but it also crashes when I plug and unplug the usb cable. I don't ...
0
votes
1answer
41 views

Why do I get a Random Crash during a Network Communication - (crash in CFRelease)?

I am working on one of my projects which is in maintenance phase so I do not have much liberty to change a major chunk at one go, While working on this I get to see this random crash on both Simulator ...
2
votes
0answers
32 views

calling `file.show` on a directory causing crash

I called file.show on a variable that contained a path instead of a file and R crashed. When I brought it back up, I tested file.show("~") And I get a consistent crash. Can anyone confirm? ...
0
votes
1answer
25 views

Arduino crashes after time

I am working on an arduino project, that makes http requests on a server and reads the http page content. Ιn the loop I have a function: String eventValue = check_for_event(); String ...
0
votes
0answers
27 views

Android Fragment : replace Crash and Hide/show don't works

I'm making an App that implements this slide-out Menu and i'm pretty much satisfied about the implementation. I divided my app in multiple Fragment for one Activity so for each section of the menu ...
-1
votes
0answers
8 views

Bug I need help confirming. Anyone have an iPhone 3GS, iPod Touch, or iPhone 4/4S with iOS 6.0 or iOS 6.0.1? [closed]

I thought I fixed this bug, but I noticed it popping up in my Bugsense crash logs... Basically my game crashes after the loading screen on certain devices with certain iOS versions. If you have an ...
9
votes
1answer
729 views

Android app crashes after SDK-tools update version (NoClassDefFound, tool version 22)

I have just updated my android SDK tools to the newly released version (tools version 22, platform tools version 17) java.lang.NoClassDefFoundError The .classpath file was modified. The update in ...
0
votes
0answers
11 views

[UIThreadSafeNode createPeripheral]: unrecognized selector sent to instance

I tried to search about createPeripheral and i had no luck finding any information about it. Is there anyone here who had the same crash as this? [UIThreadSafeNode createPeripheral]: unrecognized ...

1 2 3 4 5 87