ObjectDelete in deinit() function (expert advisor) hangs.

 
Trying to delete an object inside the deinit() function of expert advisor hangs and force metatrader to shutdown the expert by timeout.

MT4 v177 (updated)

//+------------------------------------------------------------------+
//|                                                  JustTesting.mq4 |
//+------------------------------------------------------------------+
int init()
{
  return(0);
}

int deinit()
{
  ObjectDelete("mocardo");
  return(0);
}

int start()
{
  ObjectCreate("mocardo", OBJ_VLINE, 0, Time[10], 0 );
  return(0);
}
 
how many objects?
 
Slawa,
I guess is not a matter of how many objects are created.
The problem arises with just one object.
 
thanx. fixed version coming soon
Reason: