This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
Right now I'm trying this: #include <stdio.h> int main(int argc, char *argv[]) { if (argc != 3) { printf("Usage: %s %s sourcecode input", argv[0], argv[1]); } else { char source[] = "This is an example."; int i; for (i = 0; i < sizeof(source); i++) { printf("%c", source[i]); } } [...] read more
I've never seen something like this. I've spent over an hour whittling this down to the simplest I could get it. import java.io.File; import java.sql.*; public class Test { private static final String DB_PATH = "test.db"; public static void main(String[] args) throws ClassNotFoundException, SQLException { Class.forName("org.sqlite.JDBC"); new File(DB_PATH).delete(); Connection conn [...] read more
I have a framework which uses 16 bit floats, and I wanted to separate its components to then use for 32bit floats. In my first approach I used bit shifts and similar, and while that worked, it was wildly chaotic to read. I then wanted to use custom bit sized [...] read more
Is it possible to access arguments for caller and caller-of-caller via Obj-C runtime. I only found: NSLog(@"%@", [NSThread callStackSymbols]); I know it is possible, but is there any instruments (API) ? UPDATE 1: Maybe we can analyze [NSThread callStackSymbols] to determine number of arguments in each nested call. And then [...] read more
This question is a prologue to the one I previously asked here. I'm working on an IP camera project that is based on TI OMAP-L138. All in all, the H264 encoded video is streamed via live555 libraries over RTSP. For Live555 I'm using deviceSource based framed source. However, when I [...] read more
I have an issue where my Cortex-M0 is hard faulting, so I am trying to debug it. I am trying to print the contents of the ARM core registers that were pushed to the stack when the hard fault occurred. Here is my basic assembly code: __attribute__((naked)) void HardFaultVector(void) { [...] read more
I've been mucking around with glsl shaders recently and have just started with the fancy new tessellation stage. It was working perfectly for a while then all of the sudden, BANG, it fails. Whenever I run it with the original parameters and such, it breaks on, glDrawElements(GL_PATCHES, numIndicies, GL_UNSIGNED_INT, 0) [...] read more
So i'm trying to program the Rot47 algorithm in MIPS .data message: .asciiz "This text should probably contain something useful!" message_size:.word 51 .text main: li $t1, 0 la $t0, message loop: lb $a0, 0($t0) #load the first ascii-char of the string beqz $a0, done addi $t0, $t0,1 addi $t1, $t1,1 [...] read more
I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
I have written code for a uPP device driver to be used with an OMAPL138 based custom board for data acquisition through a camera lens. The code for my device driver is: /* * A device driver for the Texas Instruments * Universal Paralllel Port (UPP) * * Modified by: [...] read more
I have a controller function to take care of a number of objects whose specific classes are all derived from a pure virtual class. class Abstract { public: virtual bool ReadyForWork() = 0; virtual void DoWork() = 0; }; Then I have the following: class Specific : public virtual Abstract [...] read more
My App with an UIWebView is crashing a lot. The crash is often slightly different, but it's always a crash of the "WebThread" with a similar stack trace. I found this question but I don't think it's my case, I have iOS 6 and I'm not loading Office documents. I'm [...] read more
I'm checking my app with iPad its working fine, the flow goes well. When I try with the iPad 3, It crashes with the following log: CrashReporter Key: 793204a942c8c4835c8ee40189ce37008d86e70c Hardware Model: iPad3,3 Process: Jansirani [696] Path: /var/mobile/Applications/3C74B74A-7D41-4A61-9EF5-F6E92252612D/Jansirani.app/Jansirani Identifier: Jansirani Version: ??? (???) Code Type: ARM (Native) Parent Process: launchd [1] [...] read more
------------------------------------------------------------ UPDATED ------------------------------------------------------ I'm trying to make a code to reverse a string from one location and place it in another, but I keep getting an issue in the start of the reverse part. I want to load the last byte of the string into another register, but I get [...] read more
I have a windows phone app which works fine in the emulator and on my test device (Lumia 520), but when published to the store it appears everyone is having issues with it. In my crash logs I see lots of the same error: Problem Function: MS.Internal.XcpImports.TileHostV2_SetNativeContentProvider Exception Type: System.Windows.Markup.XamlParseException [...] read more
My app crashes the very first time it runs/installs. After that it's fine. It also appears that this issue resolved itself with iOS. I'm currently working on an update and it would be great to have it at 100% health. Here's the crash log Although I'm getting my head around [...] read more
I have a C++ header file like so: class someClass : public someBaseClass { public: someClass(); ~someClass(); private: Text playText; //declare text object }; The C++ source file for it is: someClass::someClass() : playText("Play") //instantiate text object { } someClass::~someClass() { } Then I have another class which has a [...] read more