fix broken pipe issue 58/111058/1 accepted/tizen_common accepted/tizen_ivi accepted/tizen_mobile accepted/tizen_tv accepted/tizen_wearable accepted/tizen/common/20170119.172004 accepted/tizen/ivi/20170119.222419 accepted/tizen/mobile/20170119.222355 accepted/tizen/tv/20170119.222407 accepted/tizen/unified/20170309.032614 accepted/tizen/wearable/20170119.222413 submit/tizen/20170119.084619 submit/tizen_unified/20170308.100406
authorHyihong Chae <hh.chae@samsung.com>
Thu, 19 Jan 2017 08:38:16 +0000 (17:38 +0900)
committerHyihong Chae <hh.chae@samsung.com>
Thu, 19 Jan 2017 08:41:48 +0000 (00:41 -0800)
Change-Id: I4130cb34fca739a8ecd3b7afc06bff11699daf75
Signed-off-by: HyiHong Chae <hh.chae@samsung.com>
packaging/nfc-manager.spec
src/manager/net_nfc_server_hce_ipc.c

index 523a9a2..1c69d5b 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       nfc-manager
 Summary:    NFC framework manager
-Version:    0.1.155
+Version:    0.1.156
 Release:    0
 Group:      Network & Connectivity/NFC
 License:    Flora-1.1
index 163faef..3d2b05b 100755 (executable)
@@ -483,7 +483,7 @@ static bool __send_data_to_client(int socket, data_s *data)
 {
        ssize_t ret;
 
-       ret = send(socket, data->buffer, data->length, 0);
+       ret = send(socket, data->buffer, data->length, MSG_NOSIGNAL);
        if (ret == -1) {
                DEBUG_ERR_MSG("send failed, socket [%d]", socket);