Logged In: YES
user_id=140371

this seems to be a problem with the way STL moves stuff around
behind the scenes... it's been fixed (and will be updated soon)
but for now you can open mulitple models if you do all calls to
ffll_new_model() BEFORE loading any models.

For example this works:
// create and load the model
int model = ffll_new_model();
int model2 = ffll_new_model();
int model3 = ffll_new_model();
int model4 = ffll_new_model();

int ret_val = ffll_load_fcl_file(model, "..\\aiwisdom.fcl");
ret_val = ffll_load_fcl_file(model2, "..\\aiwisdom.fcl");
ret_val = ffll_load_fcl_file(model3, "..\\aiwisdom.fcl");
ret_val = ffll_load_fcl_file(model4, "..\\aiwisdom.fcl");

While this causes the error you got:

// create and load the model
 int model = ffll_new_model();
int ret_val = ffll_load_fcl_file(model, "..\\aiwisdom.fcl");
 int model2 = ffll_new_model();
ret_val = ffll_load_fcl_file(model2, "..\\aiwisdom.fcl");
 int model3 = ffll_new_model();
ret_val = ffll_load_fcl_file(model3, "..\\aiwisdom.fcl");
 int model4 = ffll_new_model();
ret_val = ffll_load_fcl_file(model4, "..\\aiwisdom.fcl");