- Timestamp:
- Dec 25, 2008 2:19:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/kbuild.c
r2116 r2124 280 280 || !my_abspath(pszEnvVar, szTmpPath)) 281 281 { 282 const char *pszEnvVar = getenv("PATH_KBUILD_BIN");282 pszEnvVar = getenv("PATH_KBUILD_BIN"); 283 283 if ( !pszEnvVar 284 284 || !my_abspath(pszEnvVar, szTmpPath)) … … 650 650 size_t cchBuf; 651 651 char *pszBuf; 652 char *psz, *psz1, *psz2, *psz3, *psz4 ;652 char *psz, *psz1, *psz2, *psz3, *psz4, *pszEnd; 653 653 654 654 /* calc and allocate a too big name buffer. */ … … 923 923 { 924 924 /* strip it */ 925 char *psz = pVar->value;926 char *pszEnd = psz + pVar->value_length;925 psz = pVar->value; 926 pszEnd = psz + pVar->value_length; 927 927 while (isblank((unsigned char)*psz)) 928 928 psz++;
Note:
See TracChangeset
for help on using the changeset viewer.