-rw-r--r-- | core/obex/obexserver.cpp | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/core/obex/obexserver.cpp b/core/obex/obexserver.cpp index 786e9f7..286961f 100644 --- a/core/obex/obexserver.cpp +++ b/core/obex/obexserver.cpp | |||
@@ -216,2 +216,3 @@ static void obex_conn_event (obex_t *handle, obex_object_t *object, | |||
216 | OBEX_TransportDisconnect(handle); | 216 | OBEX_TransportDisconnect(handle); |
217 | _exit(0); | ||
217 | break; | 218 | break; |
@@ -436,9 +437,11 @@ bool ObexServer::start(RunMode runmode, Communication comm) | |||
436 | if (initObex() == 0) { | 437 | if (initObex() == 0) { |
438 | if ( fd[ 1 ] ) { | ||
439 | ::close(fd[1]); | ||
440 | fd[1] = 0; | ||
441 | } | ||
437 | do { | 442 | do { |
438 | if ( fd[ 1 ] ) { | 443 | if (OBEX_HandleInput(m_obex, 60) < 0) { |
439 | ::close(fd[1]); | 444 | fprintf(stderr,"failed to OBEX_HandleInput(), errno=%d\n"); |
440 | fd[1] = 0; | 445 | _exit(1); |
441 | } | 446 | } |
442 | if (OBEX_HandleInput(m_obex, 10) < 0) | ||
443 | _exit(0); | ||
444 | } while(1); | 447 | } while(1); |