- Timestamp:
- Sep 29, 2012, 6:37:12 PM (12 years ago)
- Location:
- trunk/zoo-project/zoo-kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-kernel/service_internal.c
r364 r365 26 26 #ifdef USE_MS 27 27 #include "service_internal_ms.h" 28 #endif 29 30 #ifndef TRUE 31 #define TRUE 1 32 #endif 33 #ifndef FALSE 34 #define FALSE -1 28 35 #endif 29 36 -
trunk/zoo-project/zoo-kernel/zoo_service_loader.c
r364 r365 1100 1100 tmpn1[strlen(tmpc)]=0; 1101 1101 map* lmap=getLastMap(tmpmaps->content); 1102 char *tmpValue=(char*)calloc((strlen( lmap->value)+strlen(tmpc)+1),sizeof(char));1103 sprintf(tmpValue,"%s@%s", lmap->value,tmpc);1102 char *tmpValue=(char*)calloc((strlen(tmpv)+strlen(tmpc)+1),sizeof(char)); 1103 sprintf(tmpValue,"%s@%s",tmpv+1,tmpc); 1104 1104 free(lmap->value); 1105 1105 lmap->value=strdup(tmpValue);
Note: See TracChangeset
for help on using the changeset viewer.