0
votes
1answer
46 views
Howto Track down variable Corruption
I have a MFC class derived from CStdioFile declared as follows
// Datafile.h
class CDataFile : public CStdioFile
{
public:
CDataFile(void);
~CDataFile(void);
int OpenFile(LPCWSTR FileName);
}
…
0
votes
2answers
49 views
Corruption in the network stack
Hi,
What could cause WireShark to show (example) 'xxxxxxxxxxx' on the sending machine, and then show 'xxxxxxxxxii' on the receiving machine? Note that it's not WireShark showing wrong data, the data …
1
vote
3answers
31 views
Added Word Doc to CVS - became corrupt
I'm using CVSNT. I added a Microsoft 2007 docx file "as text" to the repository. After committing and before updating I tried to open the file again but was unable to. It said it was corrupt.
I …
0
votes
1answer
100 views
check manually for jpeg end of file marker ffd9 (?) in php to catch truncation errors
basically trying to remove corrupt, prematurely ending jpeg files from a collection. i figured if the end of file marker was absent then that meant the image is truncated and therefore i would …
0
votes
1answer
53 views
part of the vbscript code gets trashed with hyphens
on some computers, when a client opens the specific html page, part of the vbscript code on the client side gets trashed with hyphens. i saw that the vbscript code on that page was composed of one …
0
votes
0answers
52 views
How to fix: Fonts corrupt when I export a crystal report 8.5 to PDF?
hi all
I have created a sample report using Crystal report 8.5 and vb6.0
Every thing goes normal till I try to export the report to Pdf format by its export icon.
As soon as I do that, the report …
1
vote
1answer
94 views
iphone nslog corrupted data
Hi
I am having a weird problem with variable values. This is the code (it is part of a class method):
MyAppDelegate *pDelegate = [[UIApplication sharedApplication] delegate];
SomeDictionaryData …
0
votes
0answers
74 views
Windows file share (with VMWare Player) corrupting files
I'm running Debian on VMWare Player on an XP SP3 host.
I'm using VMWare's folder share. I'm running jetty on Debian, and editing files in Windows.
I have the following stange behavior:
Jetty is …
0
votes
2answers
212 views
PHP function return value nested array removed
I have a function that builds a collection of user objects from the database:
public static function GetUsersByGroup($instanceID, $groupID)
{
$col = null;
if($groupID != null)
…
0
votes
2answers
82 views
Invalid or corupt jarfile
I tried to create a jar file from a java project, which uses some external jars. I created a lib folder and put all the jars I need there.
I run the project in eclipse by adding all the jars in the …
1
vote
3answers
605 views
How to recover corrupted Eclipse workspace?
I just managed to corrupt contents of my Eclipse .metadata directory. Starting up with eclipse -clean did not work out. Deleting .metadata and then importing all projects, plugins and setting does not …
-2
votes
3answers
358 views
Thought experiment with __stdcall and corrupted stack (C++)
My mind was wandering today on the topic of function pointers, and I came up with the following scenario in my head:
__stdcall int function (int)
{
return 0;
}
int main()
{
…
0
votes
3answers
214 views
Strange temporary array corruption
I am attempting to create a permutation, and I receive this strange error when I finish my problem:
Stack around the variable "temp" was corrupted
the segment of the variable is within a nested for …
1
vote
5answers
305 views
segmentation fault on Unix - possible stack corruption
hello,
i'm looking at a core from a process running in Unix.
Usually I can work my around and root into the backtrace to try identify a memory issue.
In this case, I'm not sure how to proceed.
…
0
votes
2answers
349 views
Corrupt SQL Server Index?
I'm encountering a very strange problem concerning what appears to be a corrupt index of some kind. Not corrupt in the sense that dbcc checkdb will pick it up, but corrupt in the sense that it has …
