From 68ee086a1f61dd9a886c96dae8d30de7c9d535fb Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Thu, 5 Feb 2015 17:33:27 -0800 Subject: Kill off some more unreachable fopen's. The bstring's read from file is unused. The load from file paths aren't taken. R=jam@chromium.org Review URL: https://codereview.chromium.org/902943003 --- fpdfsdk/src/javascript/Document.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'fpdfsdk/src/javascript') diff --git a/fpdfsdk/src/javascript/Document.cpp b/fpdfsdk/src/javascript/Document.cpp index 410650af49..701107f69f 100644 --- a/fpdfsdk/src/javascript/Document.cpp +++ b/fpdfsdk/src/javascript/Document.cpp @@ -1158,29 +1158,6 @@ FX_BOOL Document::filesize(OBJ_PROP_PARAMS) { if (!vp.IsGetting())return FALSE; - ASSERT(m_pDocument != NULL); - -// CFile file(m_pDocument->GetPath(), CFile::modeRead | CFile::typeBinary | CFile::shareDenyNone); -// vp << (double)file.GetLength(); -// file.Close(); - - if ( m_pDocument->GetPath().IsEmpty() == FALSE) - { - CFX_ByteString bsStr = CFX_ByteString::FromUnicode( m_pDocument->GetPath() ); - FILE * pFile = NULL; - pFile = fopen( bsStr.GetBuffer( bsStr.GetLength() ), "rb" ); - if ( pFile ) - { - fseek( pFile, 0, SEEK_END ); - long lSize = ftell( pFile ); - fclose( pFile ); - pFile = NULL; - - vp << (FX_INT32)(lSize); - return TRUE; - } - } - vp << 0; return TRUE; } -- cgit v1.2.3