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.
I have a Kannel gateway with multiple SMPP binds ( one operator requires separate transmitter and receiver binds while another permits transceiver binds ). The transceiver binds do not display this problem, so I will not delve into more detail on those. In the separate receiver / transmitter bind scenario, [...] read more
I am trying to link my .o files to generate the ELF to be run on an ARM M0+ bare metal. I am using arm-none-eabi-gcc. If I just have my C file (s) written it links fine and I can run it no problem. (For this I am providing the [...] read more
After a small update to my app, it crashes quite often with the following stack trace: Frame Image Function Offset 0 KERNELBASE.dll RaiseException 0x00000036 1 mrmcorer.dll Microsoft::Resources::ReportFatalException 0x00000052 2 mrmcorer.dll Windows::ApplicationModel::Resources::Core::CResourceManagerFactory::get_Current 0x0002b1b0 3 mrmcorer.dll Windows::ApplicationModel::Resources::Core::CResourceManagerFactory::GetCurrentResourceManagerInternal 0x0000004a 4 mrmcorer.dll _GetResourceManagerForCurrentApplicationInternal 0x00000026 5 mrmcorer.dll GetStringValueForManifestField 0x00000140 6 twinapi.appcore.dll Windows::ApplicationModel::Core::CoreApplication::SetAppDisplayName 0x00000048 7 twinapi.appcore.dll [...] read more
With mspgcc-size I can get an output like this: text data bss dec hex 13072 236 65296 78604 1330c We know that: Flash = data + text RAM = data + bss How can I extract the size of ROM/RAM from the selected -mmcu=msp430g2553 with the toolchain? e.g. ROM: 8192 [...] read more
The original programmer had this idea that seems to work on whatever compiler he was using, but doesn't work so well in VS C++. The practice looks very questionable to me. He's got a generic base class called mathObject that has a lot of common math functions. On top of [...] read more
I found the nodes, but I'm a little bit stuck. Maybe it's because I've been staring at this for too long, but I can't seem to figure out what to do next. From what I found, the nodes are in ascending order. I think. The expected input for phase 6 [...] read more
I am trying to save a video file as MP4 format in ubuntu16.04 using videoWriter function as below int frame_width = cap.get(CV_CAP_PROP_FRAME_WIDTH); int frame_height = cap.get(CV_CAP_PROP_FRAME_HEIGHT); VideoWriter video("/home/Desktop/1.mp4",CV_FOURCC('M','J','P','G'),10, Size(frame_width,frame_height)); But I am getting the error as below: OpenCV: FFMPEG: tag 0x47504a4d/'MJPG' is not supported with codec id 8 and format [...] read more
Cross compiled gdb, with configure --target=m68k-linux --program-prefix=m68k- , gives error as no core file handler recognizes the format. Details: The core file is generated on a m68k devcie and the log is analyzed on the i686-pc-linux-gnu GDB version - 7.6 Any clue on this subject? > ELf format of the [...] 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 wrote a script that records video from my webcam, writes text over it, and saves to disk. However, I can't seem to get it to work or the video to play in VLC. Here's the script for trying all the codec / extension type combinations, which I run, hit [...] read more
A trivial class: public class TestClass : System.ServiceModel.Security.SecurityCredentialsManager { } When compiled using csc against the MS CompactFramework v3.5 will result in a dll that fails to pass peverify, resulting in a "Type load failure". It appears to be an issue with inheriting from the SecurityCredentialsManager class which is part [...] read more
An address for an ISR shown in the GCC map is 0x00001328. .text.USART0_RX_IRQHandler 0x00001328 0xe4 ./Source/interrupts_new.o 0x00001328 USART0_RX_IRQHandler However, the value actually loaded into the ISR vector at 0x0000006C is 0x00001329. 0x00000060 000012ED 00001301 00001315 00001329 í...........)... This is the first time I've noticed this (or even looked). Is the [...] read more
The project I am working on requires a Sign Up form that needs to insert the User details into the database table. The problem is that when the Sign Up Button is clicked the data entered into the edits doesn't save or update into the database. I also get an [...] read more
I recently installed the JAUS++ (http://active-ist.sourceforge.net/jaus++.php) and Boost libraries in Microsoft Visual Studio 2012. I am trying to run the first JAUS++ tutorial, found here (http://active-ist.sourceforge.net/jaus++/examples/tutorial_01.html) but, during debugging, it runs into: "Unhandled exception at at 0x77064598 in JausTest.exe: Microsoft C++ exception: std::bad_alloc at memory location 0x0024F240." Then, it creates [...] read more
I am experiencing some crashes on my app (somewhat similar to a compass app). The windows crash report is telling me this: frame 0: Microsoft.Devices.Sensors.ni.dll; Microsoft.Devices.Sensors.Accelerometer.Start; 0x0000006c frame 1: PivotApp1.ni.DLL; PivotApp1.MainPage+_start_d__0.MoveNext; 0x000001d4 frame 2: mscorlib.ni.dll; System.Runtime.CompilerServices.AsyncMethodBuilderCore._ThrowAsync_b__3; 0x00000036 I am unable to understand what this exactly means here. Based on what [...] read more
One of my user has problem with the listpicker. The problem is only happen with his lumia 1520 (and I think also with other phone with that resolution but I can't test it). The listpicker crash when the user tap on it and it goes to full mode display in [...] read more
this is my stack trace .. i get this bug when i debug the code.How to solve this 'System.AccessViolationException' issue ? i m using Visual studio 2010 and visual c++ MFC code. 'UROC GUI.exe': Loaded 'C:\Windows\SysWOW64\msvcr110_clr0400.dll', Symbols loaded (source information stripped). 'UROC GUI.exe': Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_32\mscorlib\ce5f61c5754789df97be8dc991c47d07\mscorlib.ni.dll', No native symbols in symbol [...] read more
I am using strstr() function but I am getting the crash. This part of code is crashing with error "Access violation reading location 0x0000006c." strstr(p_czCharactersToDelete, (const char*)p_czInputString[index])) Here is the complete code... #include "stdafx.h" #include <iostream> #include <string> void delchar(char* p_czInputString, const char* p_czCharactersToDelete) { for (size_t index = 0; [...] read more
I am trying to tokenize lines in a file using _tcstok. I am able to tokenize the line once, but when i try to tokenize it a second time, I get an access violation. I feel like it has something to do with not actually accessing the values, but locations [...] read more