ports/net-im/libjingle/files/patch-talk__base__thread.cc
Mario Sergio Fujikawa Ferreira f30bd9717b o Fix: add matching pthread_attr_destroy(3) to each pthread_attr_init(3)
o Force FEATURE_ENABLE_SSL for xmpp
o Bump PORTREVISION
2006-05-03 01:06:46 +00:00

10 lines
284 B
C++

--- talk/base/thread.cc.orig Tue May 2 11:43:09 2006
+++ talk/base/thread.cc Tue May 2 11:43:21 2006
@@ -113,6 +113,7 @@
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_create(&thread_, &attr, PreLoop, this);
+ pthread_attr_destroy(&attr);
started_ = true;
}