noPollCtx * result in line 69 in _nopollctx.c is used unitialised. As autogen.sh uses -Werror on automake, compiling for Win32 will fail because of the use in line 72 _if (! nopoll_win32init (result)) { right after. Therefore, result should be initialised with noPollCtx* result = NULL, I'd say.
Hello,
noPollCtx * result in line 69 in _nopollctx.c is used unitialised. As autogen.sh uses -Werror on automake, compiling for Win32 will fail because of the use in line 72 _if (! nopoll_win32init (result)) { right after. Therefore, result should be initialised with noPollCtx* result = NULL, I'd say.