diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-11 12:48:48 +0000 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-11 12:48:48 +0000 |
commit | 9919e6f3394699594644ddc7555a113aed2d12eb (patch) | |
tree | 980e07ac6ee5dfe88385b50a7e72f342961b10ee /indra/newview | |
parent | fc1af768b800c890cda8ef3e8b9ee2537ca1d92a (diff) |
CID-68
Checker: FORWARD_NULL
Function: LLPipeline::updateMoveNormalAsync(LLDrawable *)
File: /indra/newview/pipeline.cpp
not a bug.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/pipeline.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index bd22fc5f2e..dd9634a234 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -1355,6 +1355,7 @@ void LLPipeline::updateMoveNormalAsync(LLDrawable* drawablep) if (!drawablep) { llerrs << "updateMove called with NULL drawablep" << llendl; + return; } if (drawablep->isState(LLDrawable::EARLY_MOVE)) { |