summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-05-02 19:03:28 +0200
committerwm4 <wm4@nowhere>2015-05-02 19:03:28 +0200
commit1982fedca61b9b7c4bec2e6f2d31ee566fb51923 (patch)
tree0d8df152ef39930d4904f8707b1b124f43765581 /DOCS
parent3508a3fbd12b93e0414acb7996417dd91f369170 (diff)
downloadmpv-1982fedca61b9b7c4bec2e6f2d31ee566fb51923.tar.bz2
mpv-1982fedca61b9b7c4bec2e6f2d31ee566fb51923.tar.xz
options: remove --leak-report
Use the environment variable instead.
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/tech-overview.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/DOCS/tech-overview.txt b/DOCS/tech-overview.txt
index fd6a7a1fb7..914b2222b4 100644
--- a/DOCS/tech-overview.txt
+++ b/DOCS/tech-overview.txt
@@ -75,8 +75,7 @@ talloc.h & talloc.c:
allocation call will never return NULL.
One very useful feature of talloc is fast tracking of memory leaks. ("Fast"
- as in it doesn't require valgrind.) You can enable it by passing the option
- --leak-report as first parameter, or better, setting the
+ as in it doesn't require valgrind.) You can enable it by setting the
MPV_LEAK_REPORT environment variable to "1":
export MPV_LEAK_REPORT=1
This will list all unfree'd allocations on exit.