Enlightenment CVS committal
Author : moom
Project : e17
Module : libs/etk
Dir : e17/libs/etk/src/lib
Modified Files:
etk_tree.c
Log Message:
* [Tree] Fix segv on x86_64. Again, thanks to ilLogict :)
===================================================================
RCS file: /cvs/e/e17/libs/etk/src/lib/etk_tree.c,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -3 -r1.87 -r1.88
--- etk_tree.c 20 Feb 2007 20:50:19 -0000 1.87
+++ etk_tree.c 25 Feb 2007 21:58:25 -0000 1.88
@@ -1131,12 +1131,12 @@
return;
va_copy(args2, args);
- while ((col = va_arg(args, Etk_Tree_Col *)))
+ while ((col = va_arg(args2, Etk_Tree_Col *)))
{
for (i = 0; i < col->num_models; i++)
{
if (col->models[i]->cell_data_get)
- col->models[i]->cell_data_get(col->models[i],
row->cells_data[col->id][i], &args);
+ col->models[i]->cell_data_get(col->models[i],
row->cells_data[col->id][i], &args2);
}
}
va_end(args2);
@@ -1231,10 +1231,10 @@
return;
va_copy(args2, args);
- while ((model = va_arg(args, Etk_Tree_Model *)))
+ while ((model = va_arg(args2, Etk_Tree_Model *)))
{
if (model->cell_data_get)
- model->cell_data_get(model,
row->cells_data[model->col->id][model->index], &args);
+ model->cell_data_get(model,
row->cells_data[model->col->id][model->index], &args2);
}
va_end(args2);
}
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs