So First thing first, this is a program specific to a web app only accessible on the intranet of the group I'm writing it for, sorry you cant really run it on your end.
I am having the most bizarre problem and was hoping someone has seem this issue.

So the process calls end and the program enters into and finished the moc_* file then I get one of 2 errors:

1-
Qt Code:
  1. First-chance exception at 0x655a3196 in Bommerd.exe: 0xC0000005: Access violation reading location 0xfeeeff0a.
  2. Unhandled exception at 0x655a3196 in Bommerd.exe: 0xC0000005: Access violation reading location 0xfeeeff0a.
To copy to clipboard, switch view to plain text mode 
With a break point on line 109 of free.c
Qt Code:
  1. "#endif /* _WIN64 */
  2. {
  3. ---> retval = HeapFree(_crtheap, 0, pBlock);
  4. if (retval == 0)
  5. {
  6. errno = _get_errno_from_oserr(GetLastError());
  7. }
  8. }
To copy to clipboard, switch view to plain text mode 

Or something in malloc file (cant seem to populate this one after the changes)

the weird part, in laman's terms, is all function calls finish and control should be returned to the central cpp in an "idle" mode but i get the above errors.

QT 4.7.1 with VS2008 v 9.0.30729.1 SP on Win XP x86 machine

EDIT: this only happens at the end of ONE of my signal-slot call. the rest work without a hitch

Any help would be awesome. and if you have questions ask away.