close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#1554 closed defect (fixed)

Fallo en el arranque de Tol con Cint

Reported by: Víctor de Buen Remiro Owned by: Víctor de Buen Remiro
Priority: highest Milestone: Mantainance
Component: Kernel Version: 3.1
Severity: blocker Keywords:
Cc:

Description

La inicialización del sistema CINT ha dejado de funcionar súbitamente provocando un acceso inválido de memoria que provoca la caída de TOL antes de arrancar.

Con el depurador he visto que se produce al llamar a G__init_cint_ptr
desde

//--------------------------------------------------------------------
int Cint_init_cint (G__CONST char* command)
//--------------------------------------------------------------------
{
  if(!G__init_cint_ptr) 
  { 
    Cint_not_linked_message("Cint_init_cint"); 
    return(-1); 
  } 
  int res = (*G__init_cint_ptr)(command);
  return(res);
}

que es a su vez llamada en

int Cint_initialize(const BText& filePath)
{
  ...
  BText order = "cint";
  ...
  int G__init_cint_ = Cint_init_cint(order);
  ...
}

Change History (2)

comment:1 Changed 13 years ago by Víctor de Buen Remiro

Resolution: fixed
Status: newclosed

(In [4787]) Fixes #1554
Disables all CINT features

comment:2 Changed 13 years ago by Víctor de Buen Remiro

(In [4806]) Fixes #1554 in 3.1
Disables all CINT features

Note: See TracTickets for help on using tickets.