fixed
This commit is contained in:
parent
f207924062
commit
83063037ac
16
plainbin.c
16
plainbin.c
@ -20,7 +20,7 @@
|
|||||||
#define MSG4 "No namespace available.\n"
|
#define MSG4 "No namespace available.\n"
|
||||||
|
|
||||||
#ifndef VERSION
|
#ifndef VERSION
|
||||||
#define VERSION "1"
|
#define VERSION "1.1"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int iport = 8080;
|
int iport = 8080;
|
||||||
@ -99,7 +99,7 @@ char *rand_string(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
char *rand_name(void) {
|
char *rand_name(void) {
|
||||||
for (int i = 0; i < 10; i++) {
|
for (int i = 0; i < 1000; i++) {
|
||||||
char *filename = rand_string();
|
char *filename = rand_string();
|
||||||
if (filename == NULL)
|
if (filename == NULL)
|
||||||
continue;
|
continue;
|
||||||
@ -186,14 +186,16 @@ void upload(int cfd, pid_t par) {
|
|||||||
|
|
||||||
/* Clear */
|
/* Clear */
|
||||||
UPL_ERROR:
|
UPL_ERROR:
|
||||||
if (buf != NULL)
|
if (buf)
|
||||||
free(buf);
|
free(buf);
|
||||||
|
|
||||||
if (ffd != -1)
|
if (ffd != -1)
|
||||||
close(ffd);
|
close(ffd);
|
||||||
|
|
||||||
if (ret == -1)
|
if (ret == -1)
|
||||||
fprintf(stderr, "%s: input thread: %s: %s\n", prog_name, filename, strerror(errno));
|
fprintf(stderr, "%s: input thread: %s: %s\n", prog_name, (filename) ? filename : "NULL", strerror(errno));
|
||||||
|
|
||||||
|
if (filename)
|
||||||
free(filename);
|
free(filename);
|
||||||
|
|
||||||
close(cfd);
|
close(cfd);
|
||||||
@ -267,14 +269,16 @@ void load(int cfd, pid_t par) {
|
|||||||
|
|
||||||
/* Clear */
|
/* Clear */
|
||||||
LD_ERROR:
|
LD_ERROR:
|
||||||
if (buf != NULL)
|
if (buf)
|
||||||
free(buf);
|
free(buf);
|
||||||
|
|
||||||
if (ffd != -1)
|
if (ffd != -1)
|
||||||
close(ffd);
|
close(ffd);
|
||||||
|
|
||||||
if (ret == -1)
|
if (ret == -1)
|
||||||
fprintf(stderr, "%s: output thread: %s: %s\n", prog_name, filename, strerror(errno));
|
fprintf(stderr, "%s: output thread: %s: %s\n", prog_name, (filename) ? filename : "NULL", strerror(errno));
|
||||||
|
|
||||||
|
if (filename)
|
||||||
free(filename);
|
free(filename);
|
||||||
|
|
||||||
sleep(1);
|
sleep(1);
|
||||||
|
Loading…
Reference in New Issue
Block a user