Peter M. Groen
/
FlashMQ
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
b118b047854492794e2618b17edcf802e1acf3ad
Authored by
Wiebe Cazemier
2020-12-09 15:45:33 +0100
1 parent
8f2980b5
Fix copy-paste error
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
client.h
client.h
View file @
b118b04
...
...
@@ -74,7 +74,7 @@ class Client
74
74
return;
75
75
76
76
const size_t newBufSize = writeBufsize + add_size;
77
- writebuf = (char*)realloc(
read
buf, newBufSize);
77
+ writebuf = (char*)realloc(
write
buf, newBufSize);
78
78
writeBufsize = newBufSize;
79
79
}
80
80
...
...