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'm getting an Input/Output error when I try and create a directory or file in a google cloud storage bucket mounted on a linux (Ubuntu 15.10) directory. Steps I have done: * Created a user named transfer * Created a /mnt/backups directory and ran chown -R transfer /mnt/backups * As [...] read more
I have a simple wp8.1 app published in the store (universal app) but it crashed. So I downloaded the excel file containing crash info from https://dev.windowsphone.com/en-us/DownloadReport The crash(es) occur in the latest version of my app and the clients have 8.1 (because you cannot run universal apps otherwise) Here is [...] read more
I am trying to send the sms by both adb shell am and adb shell service call .I am getting error for both . a)I am trying to send the sms following adb shell am command adb shell am start -a android.intent.action.SENDTO -d sms:"phoneNumber" --es sms_body "SMS BODY GOES HERE" [...] read more
I'm having another OpenGL ES driver error. This time I'm trying to compile the following lines: precision mediump float; varying highp vec2 textureCoordinate; void main() { highp vec4 color = texture2D(input0, textureCoordinate); vec3 color3 = color.rgb; vec2 tc = (2.0 * textureCoordinate) - 1.0; float d = dot(tc, tc); vec2 [...] read more
I have an App with the following permission on the manifest. My App is running on Android JB 4.1.2. UPDATE: I'm trying to run the App on JB, but it not works. It works on earlier API versions. <manifest xmlns...> <uses-permission android:name="android.permission.SET_DEBUG_APP"/> The problem is when I execute a command [...] read more
Currently working with SlimDX's Direct3D 11 bindings and having significant difficulty with my shader, the source of which follows: /* * * * * * * * * * PARAM STRUCTS * * * * * * * * * */ struct VSPointIn { float3 pos : POSITION; float4 color [...] read more
I built a Class Library (.Net Framework) in C#, named Return that has only one method which returns 1. Then, I called the .Net DLL from a console application in Delphi by turning it COM visible and by importing it as Type Library. As such, code was generated in the [...] read more
I have a ARM linux kernel image file. but I am not sure exactly what kind of format it is... the 'file' command tells me that it is pure data. first, I thought it is vmlinuz and tried to decompress it. I searched 'gzip' header signature and uncompressed from there. [...] read more
I have a kernel that needs to apply a stencil operation on an array and store the result on another array. The stencil could be expressed in a function as: float stencil(const float* data) { return *(data-1) + *(data+1); } I want every thread to produce 4 contiguous values of [...] read more
everybody! I have some crach reports from JVM - hs_err_pid .logs. So are they caused by mistakes (exceptions) in my java code? This errors arised from AWT-EventQueue-0: --------------- T H R E A D --------------- Current thread (0x4f61b800): JavaThread "AWT-EventQueue-0" [_thread_in_native, id=9072, stack(0x4f570000,0x4f5c0000)] siginfo: ExceptionCode=0xc0000005, reading address 0x00000060 The header: [...] read more
As some of google chrome's dependencies for Linux are unable to be met (libstdc++6 and lsb-base), I've been unable to update it, which bothers me. So I've tried to install Google Chrome for Windows. I have installed wine (version 1.6.1) and it seems to be working. In addition, I've gotten [...] read more
I have a WatchOS Application on TestFlight that is crashing on startup on Apple Watch Series 3 devices (32-bit). It works flawlessly on Simulators (Xcode 11.7) and Apple Watch Series 4. I am using Alamofire 5.2.2 with Swift Package Manager. Latest Xcode (version 11.7). The device is Apple Watch Series [...] read more
Tool used: relocation.py From the homework of chapter 15 - Operating Systems three easy pieces (last page): > 3. Run with these flags:-s 1 -n 10 -l 100. What is the maximum value that > base can be set to, such that the address space still fits into physical > [...] read more
I'm trying to automate replies to a group MMS with Tasker. So far, I've been able to write a couple shell scripts with Termux that can poke into the SQLite database where received messages are stored, and get the content of those messages and the numbers of the participants in [...] read more
I am trying to modify bitfields in register. Here is my struct with bitfields defined: struct GROUP_tag { ... union { uint32_t R; struct { uint64_t bitfield1:10; uint64_t bitfield2:10; uint64_t bitfield3:3; uint64_t bitfield4:1; } __attribute__((packed)) B; } __attribute__((aligned(4))) myRegister; ... } #define GROUP (*(volatile struct GROUP_tag *) 0x400FE000) When I [...] read more
I am using CMFCListCtrl with LVS_OWNERDATA. After sorting I want to select the item with same data for e.g In this list control 3rd item is selected. Before Sorting [https://i.stack.imgur.com/XeBaC.png] Now I sorted the first column by header clicking, now the selected item is 3rd row.But I want to select [...] read more
The legacy interrupt assignment for a PCI interface is receiving interrupt 0. We are evaluating the Xilinx Zynq UltraScale+ MPSoC ZCU102 Evaluation Kit. We have a PMC interface that is on a PCI-e carrier inserted into the PCI-e slot on the board. When the driver is loaded the interrupt for [...] read more
Using Visual Studio 2015 I've recorded a web test which includes uploading a file to the website. This site doesn't allow to upload files with the same name. In webtest scenario I have a File Upload Parameter with the property Generate Unique Name set to True: enter image description here [...] read more
I am using Beaglebone Black Rev C with BB-View CapeManager as follow: 1. Latest kernel version: "Linux arm 4.15.0-bone2.1 #1 Tue Jan 30 11:48:09 GMT 2018 armv7l GNU/Linux" 2. BBB fire up correctly and screen work correctly 3. Build Qt-everywhere package 5.11 fro io.qtdownload site 4. The Qt for ARM [...] 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'm writing a simple ARM dissembler which takes an ELF file and reverts it back to its ARM instructions. I'm having an issue with processing the ELF files which contain multiple program headers I have an example .elf file to demonstrate this but I’m unsure where to upload it. I [...] read more
I'm writing a program with the ARMv7-A assembly language. I want to use Virtualization Extension and make the processor mode PL2 in the non secure world. > Therefore, I use hvc instruction as follow: > > 1. start in secure PL1(SVC) mode. > 2. set MVBAR and VBAR. > 3. [...] read more
I am trying to perform reduction in CUDA Fortran; what I did so far is something like that, performing the reduction in two steps (see the CUDA kernels below). In the first kernel I am doing some simple computation and I declare a shared array for a block of threads [...] read more
I have written very simple application in Unity for Windows Phone. Aquarium background, bubbles (particle system) and fishes moving from left to right and right to left. I published app to Windows Phone Store for free and in reports there are many crashes. Stack trace which can I export: App: [...] read more
I'm trying to boot eboot.nb0 from NAND. (Micron, MT29F4G08ABBDA) in WinCE7. Processor: i.MX6Q I have successfully booted u-boot.bin from NAND using kobs-ng tool in linux. Also, if i use modified eboot.nb0 instead of u-boot.bin in kobs, it is booting without any problem. But when i use MFGTool (in WinCE) for [...] read more
While searching the Windows registry for a setting mentioned in a previous question, I found a whole bunch of settings that were of interest to me in the following registry key: Computer\HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics One of those settings is Applied DPI Reg_DWord 0x00000060 (96) I know that DPI(Dots Per Inch) & [...] read more
In trying to set up multiple displays, I have found a setting in Windows 10 registry that is in the following location; Computer\HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics\Applied DPI I know that DPI relates to Pixel Density per inch The Current set value is: 0x00000060 (96) set as a REG_DWord Can I change this [...] read more
I need to extract data from zip file that contains extra data. When I opening it with 7-zip, it works fine, but there is warning in properties - "There are some data after the end of payload data" But when I trying to unzip it with DotNetZip it gives me [...] read more
Hardware: Board: ESP32 Dev Module, node32, ttgo Core Installation version: not sure IDE name: Arduino IDE Flash Frequency: 40Mhz PSRAM enabled: not Upload Speed: 115200 Computer OS: Windows 10 Hi, I am working on a project, which is to use GSM to connect MQTT, and send instant data such as [...] read more
I imported the symbol table file.txt of swift project, Why is it not as intuitive as Objective-C? # Symbols: # Address Size File Name 0x1000017E0 0x00000090 [ 2] ___sanitizer_cov_trace_pc_guard_init 0x100001870 0x00000070 [ 2] ___sanitizer_cov_trace_pc_guard 0x1000018E0 0x00000090 [ 2] _printC 0x100001970 0x0000001C [ 2] _sancov.module_ctor_trace_pc_guard 0x100001990 0x00000080 [ 3] +[TestOCViewController load] [...] read more
Our partner started using custom properties for messages being sent over IBM WebSphere MQ and our application developed using XMS.NET started to fail because of that. It turned out that the error is being thrown inside parsing the JMS envelope and inside the ParseJmsFolder method. This is the exception we [...] read more
I believe I have a problem with my linker script but I'm not sure if that's the true culprit here. Background: I'm using an STM32F730 on a project. The uC has 64K flash and 256K of ram. Of that, 64K is TCM, 192k is regular RAM. The project will exceed [...] read more
I'm trying return-to-libc exploit on simple program. I've managed to locate stack address where input string is stored, and locations of libc functions and build my payload base on it. [padding(252-byte)] + [system(4-byte)] + [exit(4-byte)] + [argument(4-byte)] I opened the vulnerable program with gdb and injected payload. When I check [...] 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
I'm trying to remote control my Canon EOS 1000D with Canon's EDSDK 3.6.1 in C#. I'm calling uint CameraCommand_PressShutterButton = 0x00000004; uint CameraCommand_ShutterButton_Completely = 0x00000003; int error = EdsSendCommand(camRef, CameraCommand_PressShutterButton, CameraCommand_ShutterButton_Completely); However, EdsSendCommand always returns 0x00000060 what means "invalid parameter". Any ideas, what went wrong here? 3 is the parameter [...] read more
I am compiling a very large legacy Fortran 90 code (screamer) with gFortran on a Mac (2.2 GHz Intel Core i7) running Yosemite. (gFortran V5.1.0) I have 16 GB of RAM. The code is memory intensive and I am trying to increase array sizes to solve larger problems. I have [...] read more
I am writing a C++ simulation model of Sparc V8. Memory is modelled simply as an array. I need to read an elf-executable generated by a cross compiler and use it to initialise the memory. I am planning to do it as follows. sparc-elf-readelf --hex-dump=.text --hex-dump=.rodata --hex-dump=.data <elf-file> > dump.txt [...] read more