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 am capturing ADO.Net diagnostics ETW, as described in Data Access Tracing in SQL Server 2008. The setup works, an ETL file is produced and I can see the ADO.Net trace if I use, say, tracerpt: System.Data, TextA, 0, 0, 0, 0, 17, 0, 0x0000000000000000, 0x000007D0, 0x00003A64, 1, , , [...] read more
I'm new to binary analysis. I am trying to analyse a simple program I compiled from my C code via gcc. I followed these steps: 1. aaa 2. afl and I got this output: 0x00000608 3 23 sym._init 0x00000630 1 8 sym.imp.puts 0x00000638 1 8 sym.imp._IO_getc 0x00000640 1 8 sym.imp.__printf_chk [...] read more
I have a matrix, say: M = [1000 1350;2000 2040;3000 1400]; I wish to write this matrix onto a text file in the hex format, like this: 0x000003e8 0x00000bb8 0x000007d0 0x000007f8 0x00000bb8 0x00000578 I considered using the function dec2hex but it's very slow and inefficient. It also gives me the [...] read more
I am having trouble showing proper debug symbols in the backtrace in GDB in an ARM cross-compiled system, built using Yocto. abc.c is a simple printf("Hello world\n"); program in C (nothing tricky). On the build machine: > yocto-dir/build/tmp-angstrom-glibc/sysroots/x86_64-linux/usr/bin/arm-angstrom-linux-gnueabi/arm-angstrom-linux-gnueabi-gcc abc --sysroot=yocto-dir/build/tmp-angstrom-glibc/sysroots/imx28scm -g -O0 -o abc > scp abc root@DEVICE-IP:~ On the [...] read more
I got a core dump from a multi-threaded process segmentation fault crash. While inspecting the core file using GDB, I found some threads (not all) having such backtrace: Thread 4 (LWP 3344): #0 0x405ced04 in select () from /lib/arm-linux-gnueabi/libc.so.6 #1 0x405cecf8 in select () from /lib/arm-linux-gnueabi/libc.so.6 #2 0x000007d0 in ?? [...] read more
I have a TIFF-Image, which i want to convert into a JPG. While on my local machine (Ubuntu 19.10LTS), I have ImageMagick 6.9 installed, the targeted system (Alpine 3.12.4) will have 7.0 installed. I use this command to convert the image: convert 100U.TIF 100U.JPG While on my local machine the [...] read more