Update of /cvsroot/playerstage/code/player/server/drivers/wifi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11860/server/drivers/wifi

Modified Files:
      Tag: b_thjc_dynamic_arrays
        aodv.cc .cvsignore 
Log Message:
dynamic array changes to drivers compile, still needs testing
added lots more .cvsignore settings for eclipse

Index: .cvsignore
===================================================================
RCS file: /cvsroot/playerstage/code/player/server/drivers/wifi/.cvsignore,v
retrieving revision 1.1.20.1
retrieving revision 1.1.20.2
diff -C2 -d -r1.1.20.1 -r1.1.20.2
*** .cvsignore  10 Oct 2007 09:26:03 -0000      1.1.20.1
--- .cvsignore  19 Oct 2007 21:58:57 -0000      1.1.20.2
***************
*** 4,5 ****
--- 4,7 ----
  *.la
  *.a
+ .libs
+ *.lo

Index: aodv.cc
===================================================================
RCS file: /cvsroot/playerstage/code/player/server/drivers/wifi/aodv.cc,v
retrieving revision 1.11.2.1
retrieving revision 1.11.2.2
diff -C2 -d -r1.11.2.1 -r1.11.2.2
*** aodv.cc     10 Oct 2007 09:26:03 -0000      1.11.2.1
--- aodv.cc     19 Oct 2007 21:58:57 -0000      1.11.2.2
***************
*** 182,190 ****
      if (link_count > data.links_count)
      {
!       data.links = realloc(data.links, sizoef(data.links[0])*link_count);
        data.links_count++;
      }
      assert(data.links);
!     link = data.links[link_count];
      link_count++;
  
--- 182,190 ----
      if (link_count > data.links_count)
      {
!       data.links = (player_wifi_link_t*)realloc(data.links, 
sizeof(data.links[0])*link_count);
        data.links_count++;
      }
      assert(data.links);
!     link = &data.links[link_count];
      link_count++;
  


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Playerstage-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/playerstage-commit

Reply via email to