[DONE was Avira]POLINK: fatal error: Access denied

Windows specific forum
infratec
Always Here
Always Here
Posts: 6817
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

[DONE was Avira]POLINK: fatal error: Access denied

Post by infratec »

Hi,

Strange bug:

Code: Select all

Date$ = "2017.03.15 09:59:59"

If ParseDate("%yyyy.%mm.%dd %hh:%ii:%ss", Date$) + (5 * 60) < Date()
  Debug "älter als 5 Minuten"
Else
  Debug "jünger als 5 Minuten"
EndIf
This works as expected:

Code: Select all

Date$ = "2017.03.15 09:59:59"

Datum = ParseDate("%yyyy.%mm.%dd %hh:%ii:%ss", Date$) + (5 * 60)

If Datum < Date()
  Debug "älter als 5 Minuten"
Else
  Debug "jünger als 5 Minuten"
EndIf
PB 5.51 x86 on win10 x64

Bernd
Last edited by infratec on Wed Mar 15, 2017 11:22 am, edited 1 time in total.
Dude
Addict
Addict
Posts: 1907
Joined: Mon Feb 16, 2015 2:49 pm

Re: POLINK: fatal error: Access denied

Post by Dude »

Your first example runs here without any POLINK error, also using 5.51 x86 but on Window 7.
User avatar
Bisonte
Addict
Addict
Posts: 1226
Joined: Tue Oct 09, 2007 2:15 am

Re: POLINK: fatal error: Access denied

Post by Bisonte »

PB5.60 x86/x64 on Win10 x64 no errors. Maybe your AV is a little sensitive today...
PureBasic 6.04 LTS (Windows x86/x64) | Windows10 Pro x64 | Asus TUF X570 Gaming Plus | R9 5900X | 64GB RAM | GeForce RTX 3080 TI iChill X4 | HAF XF Evo | build by vannicom​​
English is not my native language... (I often use DeepL to translate my texts.)
infratec
Always Here
Always Here
Posts: 6817
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

Re: POLINK: fatal error: Access denied

Post by infratec »

Image

Bernd
infratec
Always Here
Always Here
Posts: 6817
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

Re: POLINK: fatal error: Access denied

Post by infratec »

Image

Bernd
Fred
Administrator
Administrator
Posts: 16619
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: POLINK: fatal error: Access denied

Post by Fred »

Probably the antivirus or antimalware
infratec
Always Here
Always Here
Posts: 6817
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

Re: POLINK: fatal error: Access denied

Post by infratec »

You are right :evil:

We use Avira.
Found TR/Zusy.1154890

But it is very strange that one code works and the other not.
Fred
Administrator
Administrator
Posts: 16619
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: [DONE was Avira]POLINK: fatal error: Access denied

Post by Fred »

Bad pattern based detection
Post Reply