@@ -330,7 +330,7 @@ BOOL LocalFileRepository::GetHeadLine(const TomboURI *pURI, TString *pHeadLine)
330
330
if (bIsLeaf) {
331
331
LPCTSTR pURIstr = pURI->GetFullURI ();
332
332
DWORD n = _tcslen (pURIstr);
333
- if (n > 4 && _tcscmp (pURIstr + n - 4 , TEXT (" .chs" )) == 0 ) {
333
+ if (n > 4 && _tcscmp (pURIstr + n - 4 , TEXT (" .chs" )) == 0 ) { // FIXME hard coded 4 for file extension length
334
334
TString sPath ;
335
335
if (!pURI->GetFilePath (&sPath )) return FALSE ;
336
336
CryptedMemoNote cn;
@@ -353,8 +353,10 @@ BOOL LocalFileRepository::GetHeadLine(const TomboURI *pURI, TString *pHeadLine)
353
353
if (bIsLeaf) {
354
354
LPTSTR p = pHeadLine->Get ();
355
355
DWORD n = _tcslen (p);
356
- if (n > 4 ) {
357
- *(p + n - 4 ) = TEXT (' \0 ' );
356
+ if (n > 4 ) { // FIXME hard coded 4 for file extension length
357
+ // *(p + n - 4) = TEXT('\0'); // FIXME hard coded 4 for file extension length
358
+ char *file_extension = strrchr (p, ' .' );
359
+ *file_extension = TEXT (' \0 ' ); // remove extension
358
360
}
359
361
}
360
362
return TRUE ;
@@ -375,10 +377,20 @@ BOOL LocalFileRepository::GetOption(const TomboURI *pURI, URIOption *pOption) co
375
377
pOption->bFolder = TRUE ;
376
378
} else {
377
379
// file
378
- p = p + len - 4 ;
379
- if (_tcsicmp (p, TEXT (" .txt" )) == 0 ||
380
- _tcsicmp (p, TEXT (" .chi" )) == 0 ||
381
- _tcsicmp (p, TEXT (" .chs" )) == 0 ) {
380
+ // p = p + len - 4; // FIXME strrchr() or right string compare...
381
+ p = strrchr (p, ' .' );
382
+ /*
383
+ if (p == NULL) {
384
+ pOption->bValid = FALSE;
385
+ return TRUE;
386
+ }
387
+ */
388
+ if ( p && (
389
+ _tcsicmp (p, TEXT (" .txt" )) == 0 ||
390
+ _tcsicmp (p, TEXT (" .md" )) == 0 ||
391
+ _tcsicmp (p, TEXT (" .chi" )) == 0 ||
392
+ _tcsicmp (p, TEXT (" .chs" )) == 0 )
393
+ ) {
382
394
pOption->bValid = TRUE ;
383
395
pOption->bFolder = FALSE ;
384
396
} else {
@@ -391,7 +403,7 @@ BOOL LocalFileRepository::GetOption(const TomboURI *pURI, URIOption *pOption) co
391
403
LPCTSTR p = pURI->GetFullURI ();
392
404
DWORD n = _tcslen (p);
393
405
if (n > 4 ) {
394
- if (_tcsicmp (p + n - 4 , TEXT (" .chi" )) == 0 ||
406
+ if (_tcsicmp (p + n - 4 , TEXT (" .chi" )) == 0 || // FIXME hard coded 4 for file extension length
395
407
_tcsicmp (p + n - 4 , TEXT (" .chs" )) == 0 ) {
396
408
pOption->bEncrypt = TRUE ;
397
409
} else {
@@ -402,7 +414,7 @@ BOOL LocalFileRepository::GetOption(const TomboURI *pURI, URIOption *pOption) co
402
414
403
415
if (pOption->nFlg & NOTE_OPTIONMASK_SAFEFILE) {
404
416
LPCTSTR p = pURI->GetFullURI ();
405
- if (_tcslen (p) > 4 && _tcscmp (p + _tcslen (p) - 4 , TEXT (" .chs" )) == 0 ) {
417
+ if (_tcslen (p) > 4 && _tcscmp (p + _tcslen (p) - 4 , TEXT (" .chs" )) == 0 ) { // FIXME hard coded 4 for file extension length
406
418
pOption->bSafeFileName = TRUE ;
407
419
} else {
408
420
pOption->bSafeFileName = FALSE ;
0 commit comments