]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
src/sem.c,src/tlsproxy.c: Minor cleanup.
authorSimon Ruderich <simon@ruderich.org>
Sun, 11 Mar 2012 21:50:59 +0000 (22:50 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 11 Mar 2012 21:50:59 +0000 (22:50 +0100)
src/sem.c
src/tlsproxy.c

index 86f1a15eb474fc8307ff01d1f2cde2d54a56fa2b..563cea6d592f9361566c6c73e3578bf35b09d41f 100644 (file)
--- a/src/sem.c
+++ b/src/sem.c
@@ -30,7 +30,7 @@ struct SEM {
 };
 
 SEM *sem_init(int init_value) {
-    SEM *sem = (SEM *)malloc(sizeof(SEM));
+    SEM *sem = malloc(sizeof(*sem));
     if (NULL == sem) {
         return NULL;
     }
index ad257b5314e1171d2646458e9c91c124835b5549..6ce976c62f920842396c35b23a7bd7ef61145e89 100644 (file)
@@ -137,7 +137,7 @@ int main(int argc, char **argv) {
     initialize_gnutls();
 
     /* Spawn worker threads to handle requests. */
-    threads = (pthread_t *)malloc(thread_count * sizeof(pthread_t));
+    threads = malloc(thread_count * sizeof(*threads));
     if (NULL == threads) {
         perror("thread malloc failed");
         return EXIT_FAILURE;
@@ -234,7 +234,6 @@ int main(int argc, char **argv) {
         errno = pthread_join(threads[i], NULL);
         if (0 != errno) {
             perror("pthread_join()");
-            continue;
         }
     }