http://bugs.winehq.org/show_bug.cgi?id=6794
------- Additional Comments From xerox_xerox2000@yahoo.co.uk 2007-02-02 01:40 ------- Here's another hack that makes Skype startup fine:
diff --git a/dlls/shell32/systray.c b/dlls/shell32/systray.c index 119f17f..9c82232 100644 --- a/dlls/shell32/systray.c +++ b/dlls/shell32/systray.c @@ -138,7 +138,7 @@ BOOL WINAPI Shell_NotifyIconW(DWORD dwMe else { noicon: - cds.cbData = sizeof(*nid); + cds.cbData = sizeof(nid); cds.lpData = nid; } r As far as i can tell from the code this hack is just utterly wong, but it might give a hint that sizeof(*nid) is just returning the wrong value. Maybe someone who understands this piece of code could have a look at it