mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 04:49:17 -04:00
10 lines
305 B
C++
10 lines
305 B
C++
--- talk/base/thread.cc.orig 2008-09-06 23:02:42.000000000 -0300
|
|
+++ talk/base/thread.cc 2008-09-06 23:03:04.000000000 -0300
|
|
@@ -122,6 +122,7 @@
|
|
pthread_attr_setschedparam(&attr, ¶m);
|
|
}
|
|
pthread_create(&thread_, &attr, PreRun, this);
|
|
+ pthread_attr_destroy(&attr);
|
|
started_ = true;
|
|
}
|
|
|