/inotify-cxx/trunk/CHANGELOG |
---|
1,3 → 1,6 |
0.7.1 2007-01-20 |
* incorrect event name handling fixed (#0000135) |
0.7.0 2007-01-13 |
* added Inotify::SetCloseOnExec() for simple setting this feature |
/inotify-cxx/trunk/inotify-cxx.h |
---|
246,8 → 246,11 |
if (pEvt != NULL) { |
m_uMask = (uint32_t) pEvt->mask; |
m_uCookie = (uint32_t) pEvt->cookie; |
if (pEvt->name != NULL) |
m_name = pEvt->name; |
if (pEvt->name != NULL) { |
m_name = pEvt->len > 0 |
? pEvt->name |
: ""; |
} |
m_pWatch = pWatch; |
} |
else { |