diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-15 12:58:09 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-15 12:58:09 +0000 |
commit | 714b5dfb8f159c8d54ef42c905c3c85f4b4e7962 (patch) | |
tree | 0b165971e9bdb09c4599203193ed5481b81eba13 /protocols/MSN/src/msn_global.h | |
parent | 4336962bfb77acdebcb167571a8ce9e1d6c26778 (diff) |
- when data are dropped from the network buffer, the end of buffer should be '\0';
- valid ERR_LIST_UNAVAILABLE handler
git-svn-id: http://svn.miranda-ng.org/main/trunk@13603 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN/src/msn_global.h')
-rw-r--r-- | protocols/MSN/src/msn_global.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/MSN/src/msn_global.h b/protocols/MSN/src/msn_global.h index 578de7ba52..f2b4074390 100644 --- a/protocols/MSN/src/msn_global.h +++ b/protocols/MSN/src/msn_global.h @@ -311,9 +311,9 @@ struct HReadBuffer BYTE* surelyRead(size_t parBytes);
ThreadData* owner;
- BYTE* buffer;
- size_t totalDataSize;
- size_t startOffset;
+ BYTE* buffer;
+ size_t totalDataSize;
+ size_t startOffset;
};
enum TInfoType
|