Use of calloc() in BASOP
The BASOP framework suffers from the use of calloc():
- at places where a static-sized memory should be allocated, similarly to the FLP framework
- in genral,
malloc()should be used instead to be in line with FLP
The BASOP framework suffers from the use of calloc():
malloc() should be used instead to be in line with FLP