swtpm: Remove assignment to unused variable

Remove the assigment to 'res' since the subsequent code path does not
need it.

Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
diff --git a/src/swtpm/ctrlchannel.c b/src/swtpm/ctrlchannel.c
index d50c6f3..1d645f2 100644
--- a/src/swtpm/ctrlchannel.c
+++ b/src/swtpm/ctrlchannel.c
@@ -230,7 +230,6 @@
         if (remain) {
             n = read_eintr(fd, pss->u.req.data, sizeof(pss->u.req.data));
             if (n < 0) {
-                res = TPM_IOERROR;
                 close(fd);
                 fd = -1;
                 goto err_fd_broken;