Windows error 0x0000004B, 75

Detailed Error Information

STREAMS_INTERNAL_ERROR[1]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x4B: STREAMS_INTERNAL_ERROR.

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][3]
DescriptionThe default facility code.[2][3]
Error Code75 (0x004b)

Questions

2votes
2answers

Failed to create assembly 'System.ServiceModel.Internals' in SQL

I am trying to create an assembly in SQL but I am not able to load the following DLL. System.ServiceModel.Internals create assembly [system.servicemodel.internals] from 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.ServiceModel.Internals.dll' with permission_set = safe; go I get this error: > Msg 6218, Level 16, State 2, Line 2 CREATE ASSEMBLY for assembly > 'System.ServiceModel.Internals' failed [...] read more
c#
clr
.net-assembly
sqlclr
2votes
0answers

Protobuf-net serializer used in Unity gives Invalid IL code IL_0035: call 0x06000001

Using Unity 5.0.1f1, protobuf-net r668. I've set up a protobuf serializer dll using Visual Studio 2013, set to framework "Unity .Net 3.5 Subset Base Class Libraries" (I've also tried .Net 3.5 with same result). I have 4 parent data types to serialize: two rather simple ones, and two a tad [...] read more
c#
unity3d
protobuf-net
1vote
2answers

Position 2D array bug as parameter causes memory dumps

This is my program in C++, which accepts an 2D array a[m][n]. If an element a[i][j] is zero, then set all the ith row and jth column elements to zero. This is code sample: #include <iostream> #include <cstdlib> #include <ctime> using namespace std; class SetZero{ public: static void setZero(int **, [...] read more
c++
arrays
pointers
0votes
2answers

Can anyone tell me whats wrong with my C++ code

#include <iostream> #include <iomanip> #include <fstream> #include <cstdlib> #include <string> using namespace std; int array1 [70]; string array2 [1000]; void numgenerate (void) { int marks,count; for (count=0 ; count<71 ; count++) { marks = rand() % 101; array1 [count] = marks; if(marks>=82) array2 [count]="A+"; else if(marks>=74 && marks<81) array2 [count]="A"; [...] read more
c++

Comments

Leave a comment

(plain text only)

Sources

  1. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0