- Timestamp:
- Jul 13, 2008, 11:24:21 AM (17 years ago)
- Location:
- trunk/ab5.0/abdev
- Files:
- 
      - 2 edited
 
 - 
          
  BasicCompiler_Common/Subroutine.cpp (modified) (2 diffs)
- 
          
  compiler_x86/stdafx.h (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
      trunk/ab5.0/abdev/BasicCompiler_Common/Subroutine.cppr608 r686 232 232 //パラメータを整備 233 233 char *Parameter; 234 Parameter=(char *)HeapAlloc(hHeap,0,lstrlen(ArrayElements)+ lstrlen(rightSide)+32);234 Parameter=(char *)HeapAlloc(hHeap,0,lstrlen(ArrayElements)+(rightSide ? lstrlen(rightSide) : 0)+32); 235 235 lstrcpy(Parameter,ArrayElements); 236 236 if(rightSide){ … … 281 281 //パラメータを整備 282 282 char *Parameter; 283 Parameter=(char *)HeapAlloc(hHeap,0,lstrlen(ArrayElements)+ lstrlen(rightSide)+32);283 Parameter=(char *)HeapAlloc(hHeap,0,lstrlen(ArrayElements)+(rightSide ? lstrlen(rightSide) : 0)+32); 284 284 lstrcpy(Parameter,ArrayElements); 285 285 if(rightSide){ 
- 
      trunk/ab5.0/abdev/compiler_x86/stdafx.hr648 r686 58 58 #include <DataTableGenerator.h> 59 59 #include <BreakPoint.h> 60 61 #define lstrlenA strlen 62 #define lstrcmpA strcmp 63 #define lstrcpyA strcpy 64 #define lstrcmpiA _stricmp 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
