blob: 6e99cf5193a5144ee264c04323272151e9faa05e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
--- 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;
}
|