lib/oofatfs: Fix speculative read in create_name.
Signed-off-by: Duncan Lowther <Duncan.Lowther@glasgow.ac.uk>
This commit is contained in:
parent
ca79b49619
commit
25fb651566
|
@ -2821,7 +2821,7 @@ static FRESULT create_name ( /* FR_OK: successful, FR_INVALID_NAME: could not
|
|||
if (di >= FF_MAX_LFN) return FR_INVALID_NAME; /* Reject too long name */
|
||||
lfn[di++] = wc; /* Store the Unicode character */
|
||||
}
|
||||
while (*p == '/' || *p == '\\') p++; /* Skip duplicated separators if exist */
|
||||
if (wc == '/' || wc == '\\') while (*p == '/' || *p == '\\') p++; /* Skip duplicated separators if exist */
|
||||
*path = p; /* Return pointer to the next segment */
|
||||
cf = (wc < ' ') ? NS_LAST : 0; /* Set last segment flag if end of the path */
|
||||
|
||||
|
|
Loading…
Reference in New Issue