Changeset 181 for trunk/foundation/class_c/nomfilepath.c
- Timestamp:
- Jan 7, 2007, 6:21:31 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/foundation/class_c/nomfilepath.c
r180 r181 192 192 PNOMPath nomRetval=NOMPathNew(); 193 193 gchar *chrTemp; 194 195 chrTemp=NOMPath_copyCString(nomSelf, NULLHANDLE); /* This is a copy */ 194 gchar *chrTemp2; 195 196 chrTemp2 = chrTemp = NOMPath_copyCString(nomSelf, NULLHANDLE); /* This is a copy */ 196 197 197 198 while(*chrTemp!='\0' && *chrTemp!=G_DIR_SEPARATOR) … … 199 200 *chrTemp='\0'; 200 201 201 nomRetval=(PNOMPath)NOMPath_assignCString(nomRetval, chrTemp , NULLHANDLE);202 nomRetval=(PNOMPath)NOMPath_assignCString(nomRetval, chrTemp2, NULLHANDLE); 202 203 203 204 g_free(chrTemp);
Note:
See TracChangeset
for help on using the changeset viewer.