source/blender/blenloader/intern/readfile.c - use memmove rather then strncpy for overlapping strings.

source/blender/blenlib/intern/fileops.c - zero length strings would check for a slash before the strings first char.
source/gameengine/GameLogic/SCA_JoystickSensor.cpp - m_istrig_prev was not initialized
source/blender/src/editmesh.c - active face pointer was not set to NULL in free_editMesh()
This commit is contained in:
2008-10-19 04:02:37 +00:00
parent 72e5ede546
commit 42e287af1c
4 changed files with 5 additions and 3 deletions

View File

@@ -74,6 +74,7 @@ std::cout << " hat flag " << m_hatf << std::endl;
void SCA_JoystickSensor::Init()
{
m_istrig=(m_invert)?1:0;
m_istrig_prev=0;
m_reset = true;
}