Displaying 1 result from an estimated 1 matches for "rb_get_depend".
2007 Aug 31
0
[ win32utils-Bugs-13560 ] Service dependencies has wierd string.
...cSs
     Ndisuio
     o
     calSystem
     tem
     reless Zero Configuration
      Zero Configuration
     Configuration
     uration
     n
     tensions
     ns
     Service
     e
      Service
     ce
I debugged service.c and service.h and found something wrong.
I modified the function "rb_get_dependencies" from service.h like following and it works fine.
static VALUE rb_get_dependencies(LPTSTR lpDependencies){
   VALUE v_dependencies = rb_ary_new();
   
   if(lpDependencies){
      TCHAR* pszDepend = 0;
      int i = 0;
      
      pszDepend = &lpDependencies[i];
 
      while(*pszD...