ianother core dump cause we forgot to finish the code

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@665 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-03-18 07:52:59 +00:00
parent 4891cfb7d8
commit 3a34b5b021

View File

@ -222,6 +222,11 @@ xaccSetCursor (Table *table, CellBlock *curs,
/* hack alert -- should check to make sure that no null pointers
* or bad values were passed in ... */
/* this cursor is the handler for this block */
table->handlers[virt_row][virt_col] = curs;
/* intialize the mapping so that we will be able to find
* the handler, given this range of physical cell addressses */
for (i=0; i<curs->numRows; i++) {
for (j=0; j<curs->numCols; j++) {
Locator *loc;