Changeset 24 in libcf++


Ignore:
Timestamp:
12/18/15 21:28:08 (8 years ago)
Author:
cheese
Message:

#1 bin::operator +() 버그 수정 및 task::thread 소멸 시 포인터 초기화 하도록 수정

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bin.cpp

    r18 r24  
    102102cf::bin cf::bin::operator +(const cf::bin & in) const
    103103{
    104     bin out(in);
     104    bin out(*this);
    105105
    106106    out.append(in);
  • trunk/src/task.cpp

    r15 r24  
    7777
    7878    cf::memory::free(mMutex);
     79    mMutex = NULL;
    7980}
    8081
Note: See TracChangeset for help on using the changeset viewer.