Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-03-08 10:32:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-08 10:32:00 +0400
commit6fd187e4df1133b273ee2e5c1bbb3b8a9f31e73e (patch)
treeff3e9899dc31ffa5190c3ad5990b72a6edb14b54 /intern/string
parent1d5b7bc1f795096d1eee69378b9b924560b9b20d (diff)
code cleanup: 0 --> NULL
Diffstat (limited to 'intern/string')
-rw-r--r--intern/string/intern/STR_String.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/string/intern/STR_String.cpp b/intern/string/intern/STR_String.cpp
index 283b44380ee..4ea451311e4 100644
--- a/intern/string/intern/STR_String.cpp
+++ b/intern/string/intern/STR_String.cpp
@@ -106,7 +106,7 @@ STR_String::STR_String(const char *str)
this->m_data[this->m_len] = 0;
}
else {
- this->m_data = 0;
+ this->m_data = NULL;
this->m_len = 0;
this->m_max = 8;
}