crash

VB6: Capicom Crashes on WinXP [duplicate]

和自甴很熟 提交于 2019-12-14 04:04:52
问题 This question already has an answer here : Closed 11 years ago . Any suggestions on figuring out this crash? The below code intermittently crashes between logging <part>14 and logging <part>15 . Plaintext is a path string (in this case it is "C:\Documents and Settings\Brian\Desktop\Joy\" , despite a clear lack of such joy. I have a sinking feeling this is a symptom of some sort of evil memory issue. I tried with both Capicom 2.1.0.1 and 2.1.0.2, both of which crash. The latter gives a

Android Start App On Boot from BroadcastReceiver Crashing

坚强是说给别人听的谎言 提交于 2019-12-14 03:59:24
问题 I am trying to start my Android 2.1 Galaxy S Phone on boot and it crashes. Here is my receiver if I comment out context.startActivity(i) I don't get crash otherwise I see it on powerup. startActivity from another activity using same ACTION does not cause crash. This seems to be just on Boot. public class MyBroadcastReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Intent i = new Intent(); i.setAction("DISPLAY_FIRSTPAGE"); context

Restoring a file from Git?

江枫思渺然 提交于 2019-12-14 03:51:00
问题 The question is related to the question "How to restore Git after fatal file system error?", but for a single file. I need to get to last state 2009-07-27 23:58, where I need the file: /Users/henri/BAckup/6-relationdiagram/Normalized_perhaps_DB/simple_schema0.tcuml How can I restore the file after a crash? ADDED: Where will I find the file? What are they supposed to do? Graham's tip $git checkout 63c6844fded9cfcdee14c9330be82557046b3e56 HENRI_suunnittelu_doc/6-relaatiotietokantakaavio

How to figure out why my app is crashing?

陌路散爱 提交于 2019-12-14 03:03:54
问题 I have an iOS app that is on the app store at the moment. It works fine, just as expected, on 99% of the Apple devices. However, there are some devices where it opens once, flashes, and then closes again after first use. I don't think it is a device specific issue as this was experienced on iPhones 5 and 6S plus and at the same time it works perfectly fine on other iPhone 5 and 6Ss. Similarly, same thing on the software as well (it is upto date with 11 and crashes on 11 and crashed on

Application crashes at [[NSBundle mainBundle] pathForResource

懵懂的女人 提交于 2019-12-14 02:54:26
问题 My Application is crashes in the device at this point, [[NSBundle mainBundle] pathForResource I am giving the path for the pdf here . but at the execution time it is showing that it is not getting path there . and that may be the reason for crashing. however it is running perfectly on simulator . i am not able to figure out why is this happening here is that code NSString *path = [[NSBundle mainBundle] pathForResource:[myArray objectAtIndex:0] ofType:[myArray objectAtIndex:1]]; NSLog(@"array

iOS Crash Log Help Needed

一个人想着一个人 提交于 2019-12-14 02:32:22
问题 I've been receiving a few crash logs for a bug that I haven't been able to replicate. The crash occurs right when the user taps on a textView in the app. The textView is located under a tableView and I extend the bottom constraint of the textView to fit the keyboard on screen. The constraint extends through keyboard notifications (NSNotificationCenter keyboardWillShow). Below are two crash logs. Any help would be appreciated! Exception Type: EXC_CRASH (SIGABRT) Exception Codes:

Apache server (xampp) crashes when using openssl function

折月煮酒 提交于 2019-12-14 02:13:37
问题 I'm trying to generate a private/public key pair with php. Server: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 OS is Windows XP SP3 with all windows updates installed. I'm trying to execute the following script: <?php $ssl_path = getcwd(); $ssl_path = preg_replace('/\\\/','/', $ssl_path); // Replace \ with / $config = array( 'config' => "$ssl_path/openssl.cnf", 'private_key_bits' => 1024, 'private_key_type' => OPENSSL_KEYTYPE_RSA ); $dn = array( "countryName" => "AT", "stateOrProvinceName"

Mongodb crashed with Invalid access at address - segmentation fault signal 11 - version 2.6

浪子不回头ぞ 提交于 2019-12-14 01:17:26
问题 I am trying to insert documents in MongoDB. My current version is 2.6 production release. My application is able to insert few documents but starts giving below error after some point of time. I am getting the same error everytime. I am running mongod from cmd prompt. I was getting same issue with 2.6.0 rc and 2.6.1 rc, but was working fine in 2.5.4. Below is the log trace. 2014-04-08T20:04:01.373+0000 [conn12] command deadlinedb.$cmd command: insert { $msg: "query not recording (too large)"

app-debug.apk is crashing while I install it manually on my Android device

こ雲淡風輕ζ 提交于 2019-12-14 00:49:20
问题 My app is running fine on Android device when I run project from Android studio. But when I install app-debug.apk manually on my device then app is crashing on starting. And app-debug-unaligned.apk is not generating. Kindly give any solution, Thanks in advance. 回答1: Delete debug.apk from output folder under build in app. and generate again and install . 回答2: I resolved this issue by unchecking instant run from Settings in android Studio. 回答3: First install your apk in your mobile and then try

c++ adding objects to vector destroys earlier objects

泪湿孤枕 提交于 2019-12-13 23:46:20
问题 I need to add objects of the same class to a vector: #include <vector> #include <cstdio> class A { int *array; int size; public: A(int s) { array = new int[size = s]; fprintf(stderr, "Allocated %p\n", (void*)array); } ~A() { fprintf(stderr, "Deleting %p\n", (void*)array); delete array; } }; int main() { std::vector<A> v; for (int n = 0; n < 10; n++) { fprintf(stderr, "Adding object %d\n", n); v.push_back(A(10 * n)); //v.emplace_back(10 * n); } return 0; } When I run this program, it crashes