aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llxfer_vfile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llmessage/llxfer_vfile.cpp')
-rw-r--r--linden/indra/llmessage/llxfer_vfile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/llmessage/llxfer_vfile.cpp b/linden/indra/llmessage/llxfer_vfile.cpp
index aede763..a92c434 100644
--- a/linden/indra/llmessage/llxfer_vfile.cpp
+++ b/linden/indra/llmessage/llxfer_vfile.cpp
@@ -60,7 +60,7 @@ LLXfer_VFile::LLXfer_VFile (LLVFS *vfs, const LLUUID &local_id, LLAssetType::ETy
60 60
61LLXfer_VFile::~LLXfer_VFile () 61LLXfer_VFile::~LLXfer_VFile ()
62{ 62{
63 free(); 63 cleanup();
64} 64}
65 65
66/////////////////////////////////////////////////////////// 66///////////////////////////////////////////////////////////
@@ -82,7 +82,7 @@ void LLXfer_VFile::init (LLVFS *vfs, const LLUUID &local_id, LLAssetType::EType
82 82
83/////////////////////////////////////////////////////////// 83///////////////////////////////////////////////////////////
84 84
85void LLXfer_VFile::free () 85void LLXfer_VFile::cleanup ()
86{ 86{
87 LLVFile file(mVFS, mTempID, mType, LLVFile::WRITE); 87 LLVFile file(mVFS, mTempID, mType, LLVFile::WRITE);
88 file.remove(); 88 file.remove();
@@ -90,7 +90,7 @@ void LLXfer_VFile::free ()
90 delete mVFile; 90 delete mVFile;
91 mVFile = NULL; 91 mVFile = NULL;
92 92
93 LLXfer::free(); 93 LLXfer::cleanup();
94} 94}
95 95
96/////////////////////////////////////////////////////////// 96///////////////////////////////////////////////////////////