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 handle leak in a C# program. I'm trying to diagnose it using WinDbg using !htrace, roughly as presented in this answer, but when I run !htrace -diff in WinDbg I'm presented with stack traces that don't show the names of my C# functions (or even my .net [...] read more
I trying to call .NET function from native code and via virtual address. I wrote a simple class library that have a class and static method and I browse with dnSpy I also checked ImageBase value is 0x10000000 using System; // Token: 0x02000002 RID: 2 public class Class1 : object [...] read more
I'm working on obfuscating an assembly and after obfuscation PEVerify issues the following error: [MD]: Error: Method has a duplicate, token=0x060035d8. [token:0x060035D5] [MD]: Error: Method has a duplicate, token=0x060035d5. [token:0x060035D8] Here is the first method declaration with header: // Token: 0x060035D5 RID: 13781 RVA: 0x000D7828 File Offset: 0x000D5A28 .method private [...] read more
The output length of the openssl aes EVP_DecryptUpdate method is inconsistent with the data length. What is the situation? Thank you c++ decrypt source static int Decrypt( std::vector<uint8_t> & en_data, int en_data_len, std::vector<uint8_t> & decrypt_data, unsigned char *key, unsigned char *iv, const int type ) { std::vector<uint8_t> buffer(en_data_len + EVP_MAX_BLOCK_LENGTH); [...] 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 might not be writing this right (I'm new to C# lol) but I need help with a C# whitelist/activation/license thing. So if I write 1111-1111-1111-1111 as license key in the textbox, I get 31-12-9999 as expiry and Not Discord#5550 as username which is intended but does not work well [...] read more
I'm a complete novice trying to learn C# by making mods for a game called RimWorld. I obtained the source code of a mod that does something similar to what I'm trying to do, and have been tweaking it to see what I can make work. The following error has [...] read more
I'm trying to create a proxy dll for dinput8.dll. The .exe load my custom dll (proxy dll) dinput8.dll. dinput8_x86.dll is renamed version of the origin .dll that loaded by my proxy dll. Everything work fine, but when i remove the MessageBox code line, then rebuild the project, i have got [...] read more
I've just copy & pasted my first OpenGL project from a tutroial (yay!). The code is super simple: #include "freeglut.h" void displayMe(void) { glClear(GL_COLOR_BUFFER_BIT); glFlush(); } int main(int argc, char** argv) { glutInit(&argc, argv); glutInitDisplayMode(GLUT_SINGLE); glutInitWindowSize(300, 300); glutInitWindowPosition(500, 500); glutCreateWindow("Test"); /// CRASHES HERE! glutDisplayFunc(displayMe); glutMainLoop(); return 0; } I use [...] read more
I was trying to build MIT Kerberos In Windows 2007 (Windows Server Enterprise) Service Pack 2 32 bit system. After adding a few flags specific to posix errors I was able to build it in Windows 7 (along with working kinit and klist programs). However in win 2007 all exes [...] read more
I'm trying to create a proxy dinput8.dll to allow keyboard remapping in a game, and have pieced together some instructions etc to come up with the following : #include <windows.h> #include <strsafe.h> #pragma pack(1) HINSTANCE hLThis = 0; HINSTANCE hL = 0; FARPROC p[5] = {0}; BOOL WINAPI DllMain(HINSTANCE hInst,DWORD [...] read more
I need to implemente a Java class which uses JNI to control a fiscal printer in XUbuntu 8.10 with sun-java6-jdk installed. The structure is the following: EpsonDriver.java loads libEpson.so libEpson is linked dynamically with EpsonFiscalProtocol.so ( provided by Epson, no source available ) and pthread I use javah to generate [...] read more