Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 49242
Collapse All | Expand All

(-)gnome-cups-add/snmpkit/snmpkit_interface.C.old (-1 / +1 lines)
Lines 508-514 Link Here
508
void **sk_table_get(SNMPTABLE *st){
508
void **sk_table_get(SNMPTABLE *st){
509
  std::list<void*> vals;
509
  std::list<void*> vals;
510
  from_c(st)->get(vals);
510
  from_c(st)->get(vals);
511
  void **retval=new (void*)[vals.size()+1];
511
  void **retval=new void*[vals.size()+1];
512
  retval[vals.size()]=NULL;
512
  retval[vals.size()]=NULL;
513
  int i=0;
513
  int i=0;
514
  for(std::list<void*>::iterator cur=vals.begin();cur!=vals.end();cur++,i++)
514
  for(std::list<void*>::iterator cur=vals.begin();cur!=vals.end();cur++,i++)

Return to bug 49242