fix bug in FE_FileType()
git-svn-id: svn://10.0.0.236/trunk@9211 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
6514a7cdee
commit
5d49bab0b1
@ -26,7 +26,12 @@
|
||||
/* Netlib utility routine, should be ripped out */
|
||||
void FE_FileType(char * path, Bool * useDefault, char ** fileType, char ** encoding)
|
||||
{
|
||||
return;
|
||||
if ((path == NULL) || (fileType == NULL) || (encoding == NULL))
|
||||
return;
|
||||
|
||||
*useDefault = TRUE;
|
||||
*fileType = NULL;
|
||||
*encoding = NULL;
|
||||
}
|
||||
|
||||
#include "mcom_db.h"
|
||||
@ -38,7 +43,7 @@ DB * dbopen(const char *fname, int flags,int mode, DBTYPE type, const void *open
|
||||
|
||||
char * XP_FileReadLine(char * dest, int32 bufferSize, XP_File file)
|
||||
{
|
||||
PR_ASSERT("UNIMPLEMENTED");
|
||||
PR_ASSERT(FALSE);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user