code cleanup: 0 --> NULL

This commit is contained in:
Campbell Barton
2013-03-08 06:32:00 +00:00
parent 1d5b7bc1f7
commit 6fd187e4df
16 changed files with 29 additions and 29 deletions

View File

@@ -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;
}