Windows error 0x00000250, 592

Detailed Error Information

DATA_NOT_ACCEPTED[1]

MessageThe TDI client could not handle the data received during an indication.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80070250.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

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.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code592 (0x0250)

Questions

6votes
1answer

Trouble displaying C# stack trace in WinDbg

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
c#
windbg
stack-trace
handle-leak
3votes
0answers

Call .Net Function Using Addresses

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
c#
3votes
1answer

Is PEVerify warning about duplicate methods wrong here?

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
c#
.net
il
peverify
0votes
0answers

use openssl aes decryption C# RijndaelManaged encryption data problem

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
c++
encryption
openssl
aes
0votes
1answer

XMS.NET fails when receiving JMS message with RFH2 header at ParseJmsFolder

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
.net
jms
ibm-mq
xms
rfh2
0votes
3answers

Simple C# whitelist, problems with looking up username and expiry

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
c#
username
whitelist
0votes
1answer

Novice trying to resolve Error CS1001 "Identifier Expected"

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
c#
0votes
1answer

DLL Proxy call LoadLibrary cause exception : Access violation reading location 0x00000250

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
c++
exception
dll
proxy
hook
0votes
0answers

Simple OpenGL example crashes

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
c++
visual-studio
opengl
glut
glew
0votes
0answers

Unable to build MIT Kerberos in Windows 2007 (Windows Server Enterprise)

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
windows
visual-studio
windbg
kerberos
0votes
0answers

LoadLibrary causes an access violation

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
c++
windows
directinput
0votes
1answer

g++ symbol versioning. Set it to GCC_3.0 using version 4 of g++

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
g++
java-native-interface

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0