mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 11:50:10 +02:00
Merge pull request #1270 from ihsinme/ihsinme-patch-238
correction of incorrect sequence of checks.
(cherry picked from commit 33b4154b0c)
This commit is contained in:
parent
93c5705078
commit
80a338fe10
1 changed files with 3 additions and 3 deletions
|
|
@ -63,14 +63,14 @@ int write_buffer(int handle, const void *data, int size)
|
|||
const char *cdata = data;
|
||||
int next_size;
|
||||
|
||||
if (size <= 0)
|
||||
return size;
|
||||
|
||||
if (write_buffer_max_blocks <= 0) {
|
||||
/* no write buffer */
|
||||
return write(handle, data, size);
|
||||
}
|
||||
|
||||
if (size <= 0)
|
||||
return size;
|
||||
|
||||
rec = g_hash_table_lookup(buffers, GINT_TO_POINTER(handle));
|
||||
if (rec == NULL) {
|
||||
rec = g_new0(BUFFER_REC, 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue