diff --git a/ChangeLog b/ChangeLog
index da0c769ba620ab22b80e9b0e4f7461f76982cd9c..65044a859e6260c18fc103cf939062dcf7a084a9 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -11177,3 +11177,8 @@
 	  procfs (2015-11-27).
 	* mtd/filemtd.c and smart.c:  Add support for a /dev/smart loop device.
 	  From Ken Petit (2015-11-28).
+	* sched/pthread/: CRITICAL BUGFIX: Logic was wiping out the indication
+	  that of the type of a pthread.  Hence, it could be confused as a
+	  task.  Found because this was causing a crash when /proc/nnn/cmdline
+	  was printed (2015-11-29).
+
diff --git a/sched/pthread/pthread_create.c b/sched/pthread/pthread_create.c
index c22cead9a9158e9ef4842e925f41c3ecd633619f..41c2a85799787f0814e70128de97c608f6f43e90 100644
--- a/sched/pthread/pthread_create.c
+++ b/sched/pthread/pthread_create.c
@@ -430,7 +430,7 @@ int pthread_create(FAR pthread_t *thread, FAR const pthread_attr_t *attr,
 
   /* Set the appropriate scheduling policy in the TCB */
 
-  ptcb->cmn.flags &= TCB_FLAG_POLICY_MASK;
+  ptcb->cmn.flags &= ~TCB_FLAG_POLICY_MASK;
   switch (policy)
     {
       default: