Browse Source

[utils] Simplify setproctitle

Philipp Hagemeister 11 năm trước cách đây
mục cha
commit
6eefe53329
1 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 4 4
      youtube_dl/utils.py

+ 4 - 4
youtube_dl/utils.py

@@ -1126,11 +1126,11 @@ def setproctitle(title):
         libc = ctypes.cdll.LoadLibrary("libc.so.6")
     except OSError:
         return
-    title = title
-    buf = ctypes.create_string_buffer(len(title) + 1)
-    buf.value = title.encode('utf-8')
+    title_bytes = title.encode('utf-8')
+    buf = ctypes.create_string_buffer(len(title_bytes))
+    buf.value = title_bytes
     try:
-        libc.prctl(15, ctypes.byref(buf), 0, 0, 0)
+        libc.prctl(15, buf, 0, 0, 0)
     except AttributeError:
         return  # Strange libc, just skip this