Author: martinf
Date: Sun Jan 25 05:05:27 2009
New Revision: 39081
URL:
http://svn.reactos.org/svn/reactos?rev=39081&view=rev
Log:
add code comment
Modified:
trunk/reactos/base/shell/explorer/shell/fatfs.cpp
Modified: trunk/reactos/base/shell/explorer/shell/fatfs.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/shell/…
==============================================================================
--- trunk/reactos/base/shell/explorer/shell/fatfs.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/shell/fatfs.cpp [iso-8859-1] Sun Jan 25 05:05:27
2009
@@ -137,8 +137,9 @@
*d = '\0';
} else {
+ s = (const char*)p->Ent->B; // no change of the pointer, just to avoid overung
warnings in code checkers
+
// read long file name
- s = (const char*)p->Ent->B;
TCHAR lname[] = {s[1], s[3], s[5], s[7], s[9], s[14], s[16], s[18], s[20], s[22],
s[24], s[28], s[30]};
long_name = String(lname, 13) + long_name;