Windows error 0x00000072, 114

Detailed Error Information

INVALID_TARGET_HANDLE[1]

MessageThe target internal file identifier is incorrect.
Declared inwinerror.h

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

ASSIGN_DRIVE_LETTERS_FAILED[2]

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

HRESULT analysis[3]

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[3][1]
DescriptionThe default facility code.[3][1]
Error Code114 (0x0072)

Questions

2votes
2answers

Are Sub-Arrays Guaranteed to be Allocated Linearly?

I know this answer is in violation of the reinterpret_cast rules but it also presumes that sub-arrays will be allocated linearly. I believed this was not guaranteed, but as I search the standard, I find my confidence wavering. If I statically allocate a 2D array, like this: int foo[][4] = [...] read more
c++
arrays
memory-layout
static-allocation
2votes
1answer

OpenMP: Access violation and other errors

PREFACE Recently, I implemented OpenMP into our group's project code. Main runs in two for loops; the outer controls the 'run', while the inner controls the 'generation.' Generations are completely independent from different runs, though dependent on other generations in the same run. The idea is to parallelize the outer [...] read more
c
visual-studio
parallel-processing
openmp
1vote
0answers

PCI Interrupt Not Assigned

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
interrupt
xilinx
pci-e
zynq
1vote
2answers

How to catch system.xml.xmlexception

I published a small free App for Windows Phone 8 Smartphones (to get to know C# - so I am a beginner in programming). A lot of my users seem pretty happy with the functionality but some of them seem to keep getting random crashes (for example in Canada: http://www.windowsphone.com/en-ca/store/app/picture-of-the-day/fc977a34-c09d-4c70-8a7b-66b6f09ab7f0) [...] read more
c#
.net
visual-studio
windows-phone-8
1vote
3answers

'Access violation' using fstream

#include <iostream> #include <fstream> #include <conio.h> using namespace std; int main() { char r; fstream file1("text.txt", ios::in |ios::binary); fstream file2("text.txt", ios::out | ios::binary); r='r'; for(int i=0; i<100; i++) file2.write((char*)r, sizeof(char)); while(!file1.eof()) { file1.read((char*)r, sizeof(char)); cout<<r<<"\n"; } file1.close(); file2.close(); getch(); } when I run this in vc++ 2010, I get the [...] read more
c++
fstream
visual-c++-2010
1vote
3answers

Problem converting endianness

I'm following this tutorial for using OpenAL in C++: http://enigma-dev.org/forums/index.php?topic=730.0 As you can see in the tutorial, they leave a few methods unimplemented, and I am having trouble implementing file_read_int32_le(char*, FILE*) and file_read_int16_le(char*, FILE*). Apparently what it should do is load 4 bytes from the file (or 2 in the [...] read more
c++
xcode
endianness
openal
0votes
1answer

Customizing Fantacy Remote .INI file

I am using Fantacy Remote to remote view other machines. I have attached the default .INI file that Fantacy Remote uses. When i connect to a machine, the client user should not have mouse and keyboard access of the Remote machine. It should be a View only remote connection. And [...] read more
remote-desktop
remote-access
0votes
0answers

Java or Solaris issue

so i have been tasked with migrating some machines mainly all windows and all has gone well until now with one machine giving us this error. As i am no software techie type and have never used Solaris or java for apps its puzzled me and I am wondering if [...] read more
java
oracle
solaris
0votes
1answer

Fatal error when starting Tomcat mongrel plugin from inside eclipse

I am trying to start Tomcat from within eclipse using the Mongrel plugin. Mongrel plugin adds start/stop/restart buttons on the eclipse main window. When I click on the start button I get this error. I have multiple jdks / jres on the machine. Is this causing the error ? I [...] read more
java
eclipse
tomcat
plugins
mongrel

Comments

Leave a comment

(plain text only)

Sources

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

User contributions licensed under CC BY-SA 3.0