*** empty log message ***
This commit is contained in:
@@ -7,7 +7,11 @@
|
||||
For example:
|
||||
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
It operates on memo files only (.dbv) without tables (.dbf)
|
||||
To create .DBV file use:
|
||||
dbCreate( cFile, {}, "DBFBLOB" )
|
||||
|
||||
* harbour/source/rdd/dbcmd.c
|
||||
* do not report error when empty structure table is passed to DBCREATE()
|
||||
CL5.3 allow to create even DBF files without any fields and because
|
||||
I can imagine some valid code which use it as a feature then I also
|
||||
|
||||
@@ -1990,7 +1990,7 @@ HB_EXPORT USHORT hb_fsCurDirBuff( USHORT uiDrive, BYTE * pbyBuffer, ULONG ulLen
|
||||
}
|
||||
|
||||
/* Strip the trailing (back)slash if there's one */
|
||||
if( strchr( OS_PATH_DELIMITER_LIST, pbyBuffer[ ulLen - 1 ] ) )
|
||||
if( ulLen && strchr( OS_PATH_DELIMITER_LIST, pbyStart[ ulLen - 1 ] ) )
|
||||
ulLen--;
|
||||
|
||||
if( ulLen && pbyBuffer != pbyStart )
|
||||
|
||||
Reference in New Issue
Block a user