Skip to content

Commit

Permalink
Comment out assertion failing on /proc/device-tree
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbednarski committed Nov 11, 2017
1 parent b41e439 commit 16a6181
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/path/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ Action readlink_proc(const Tracee *tracee, char result[PATH_MAX],
int status;
pid_t pid;

assert(comparison == compare_paths("/proc", base));
/* TODO: Following assertion fails on some devices
* https://github.com/termux/termux-packages/issues/1679
*/
//assert(comparison == compare_paths("/proc", base));

/* Remember: comparison = compare_paths("/proc", base) */
switch (comparison) {
Expand Down

0 comments on commit 16a6181

Please sign in to comment.