aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llxfer_vfile.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-12 14:59:33 -0500
committerJacek Antonelli2008-09-12 14:59:39 -0500
commit80a8bab2a9dd8e77262b001af973212a6cba4a5a (patch)
tree170168232fd4e2eec5f15295a9445535969cdb76 /linden/indra/llmessage/llxfer_vfile.cpp
parentSecond Life viewer sources 1.21.1-RC (diff)
downloadmeta-impy-80a8bab2a9dd8e77262b001af973212a6cba4a5a.zip
meta-impy-80a8bab2a9dd8e77262b001af973212a6cba4a5a.tar.gz
meta-impy-80a8bab2a9dd8e77262b001af973212a6cba4a5a.tar.bz2
meta-impy-80a8bab2a9dd8e77262b001af973212a6cba4a5a.tar.xz
Second Life viewer sources 1.21.2-RC
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///////////////////////////////////////////////////////////