style(server.c): minor fix
This commit is contained in:
parent
42cdd1e16d
commit
8780761486
1 changed files with 1 additions and 1 deletions
2
server.c
2
server.c
|
@ -221,7 +221,7 @@ char *read_paste(int connection)
|
||||||
if (total_size == 0) {
|
if (total_size == 0) {
|
||||||
/* yup, free the buffer and return an error */
|
/* yup, free the buffer and return an error */
|
||||||
if (errno != EAGAIN)
|
if (errno != EAGAIN)
|
||||||
errno = ENOENT;
|
errno = ENOENT;
|
||||||
|
|
||||||
free(buffer);
|
free(buffer);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Reference in a new issue