Changeset 17719
- Timestamp:
- 2008-11-05 20:40:18 (2 months ago)
- Files:
-
- gsdl/trunk/common-src/src/lib/gdbmclass.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gsdl/trunk/common-src/src/lib/gdbmclass.cpp
r17701 r17719 202 202 key_data.dptr = (to_utf8(key)).getcstr(); 203 203 if (key_data.dptr == NULL) { 204 if (logout != NULL) (*logout) << "gdbmclass: out of memory \n";204 if (logout != NULL) (*logout) << "gdbmclass: out of memory" << endl; 205 205 return false; 206 206 } … … 249 249 key_data.dptr = (to_utf8(key)).getcstr(); 250 250 if (key_data.dptr == NULL) { 251 if (logout != NULL) (*logout) << "gdbmclass: out of memory \n";251 if (logout != NULL) (*logout) << "gdbmclass: out of memory" << endl; 252 252 return false; 253 253 } … … 256 256 data_data.dptr = (to_utf8(data)).getcstr(); 257 257 if (data_data.dptr == NULL) { 258 if (logout != NULL) (*logout) << "gdbmclass: out of memory \n";258 if (logout != NULL) (*logout) << "gdbmclass: out of memory" << endl; 259 259 delete []key_data.dptr; 260 260 return false;
