Bugfix: LOAD_DLL_DEBUG_EVENT lpImageName parameter was incorrect.

diff --git a/loader/module.c b/loader/module.c
index 2640eec..be6a994 100644
--- a/loader/module.c
+++ b/loader/module.c
@@ -1461,7 +1461,7 @@
 			LeaveCriticalSection(&PROCESS_Current()->crit_section);
 
                         if (PROCESS_Current()->flags & PDB32_DEBUGGED)
-                            DEBUG_SendLoadDLLEvent( -1 /*FIXME*/, pwm->module, pwm->modname );
+                            DEBUG_SendLoadDLLEvent( -1 /*FIXME*/, pwm->module, &pwm->modname );
                         
 			return pwm;
 		}