Add comments for later cleanups

This commit is contained in:
Markus Koch 2019-06-17 22:08:11 +02:00
parent e12120fade
commit 0309934d82
1 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,7 @@ struct fpga_cell *fpga_fdef_loader_load(char *filename)
if (!cell) { if (!cell) {
report(LL_CRITICAL, report(LL_CRITICAL,
"Out of memory when creating cell."); "Out of memory when creating cell.");
/* TODO: clean up existing cells */
return NULL; return NULL;
} }
break; break;
@ -45,6 +46,7 @@ struct fpga_cell *fpga_fdef_loader_load(char *filename)
if (!cell) { if (!cell) {
report(LL_CRITICAL, report(LL_CRITICAL,
"Out of memory when creating cell."); "Out of memory when creating cell.");
/* TODO: clean up existing cells */
return NULL; return NULL;
} }
break; break;