[hackers] [surf/surf-webkit2] Communicate through a Unix socket instead of a pipe pair || Quentin Rameau

2020-11-01 Thread git
commit e92fd1aa5f38c399f8fc5d263026fbd9d34ddfbb Author: Quentin Rameau AuthorDate: Sat Sep 7 13:20:09 2019 +0200 Commit: Quentin Rameau CommitDate: Sun Nov 1 16:59:12 2020 +0100 Communicate through a Unix socket instead of a pipe pair diff --git a/surf.c b/surf.c index

[hackers] [surf/surf-webkit2] Simplify communication with webext || Quentin Rameau

2020-11-01 Thread git
commit 55c65b21f6d94f4042d222f8bde46e1555108c66 Author: Quentin Rameau AuthorDate: Sat May 2 15:50:50 2020 +0200 Commit: Quentin Rameau CommitDate: Sun Nov 1 16:59:12 2020 +0100 Simplify communication with webext diff --git a/surf.c b/surf.c index 566b605..ac832ff 100644 ---

[hackers] [surf/surf-webkit2] Makefile: rework how webextensions are handled || Quentin Rameau

2020-11-01 Thread git
commit 21fcbc004e16a9de46424fb21ad9c32270779a0d Author: Quentin Rameau AuthorDate: Sun Feb 10 19:48:59 2019 +0100 Commit: Quentin Rameau CommitDate: Sun Feb 10 19:50:25 2019 +0100 Makefile: rework how webextensions are handled diff --git a/Makefile b/Makefile index 4f5253a..c3a87c5

[hackers] [surf/surf-webkit2] Set title on committed load || Quentin Rameau

2020-11-01 Thread git
commit 5f81d4a99f1dd979cdd5f3e72d5de5ea0d5cdc35 Author: Quentin Rameau AuthorDate: Wed Nov 27 01:17:55 2019 +0100 Commit: Quentin Rameau CommitDate: Sun Nov 1 16:59:12 2020 +0100 Set title on committed load diff --git a/surf.c b/surf.c index 171c3a6..566b605 100644 --- a/surf.c +++

[hackers] [surf/surf-webkit2] Add support for ephemeral (zero disk access) || Quentin Rameau

2020-11-01 Thread git
commit f61cfc720c598491d7a93c9f314ceae349e00450 Author: Quentin Rameau AuthorDate: Mon Oct 8 11:37:11 2018 +0200 Commit: Quentin Rameau CommitDate: Sun Nov 1 16:59:12 2020 +0100 Add support for ephemeral (zero disk access) diff --git a/config.def.h b/config.def.h index

[hackers] [surf/surf-webkit2] Add support for configuring plugins directories || Quentin Rameau

2020-11-01 Thread git
commit 6850365d7c91e6cf873ac722c705c55905de143a Author: Quentin Rameau AuthorDate: Mon Mar 4 11:43:25 2019 +0100 Commit: Quentin Rameau CommitDate: Sun Nov 1 16:59:12 2020 +0100 Add support for configuring plugins directories diff --git a/config.def.h b/config.def.h index

[hackers] [surf/surf-webkit2] Remove common || Quentin Rameau

2020-11-01 Thread git
commit 8d5e2b3a40a86d463d666cbf61906cf22febde34 Author: Quentin Rameau AuthorDate: Tue Feb 19 05:33:04 2019 +0100 Commit: Quentin Rameau CommitDate: Sun Nov 1 16:59:11 2020 +0100 Remove common diff --git a/Makefile b/Makefile index c3a87c5..9f93b0b 100644 --- a/Makefile +++

Re: [hackers] [quark] Prevent overflow in strtonum()-parameters || Laslo Hunhold

2020-11-01 Thread Laslo Hunhold
On Sun, 1 Nov 2020 11:17:42 +0100 Quentin Rameau wrote: Dear Quentin, > SIZE_MAX is the tangible guarantee for the upper limit of size_t. indeed, but strtonum's maxval argument is a signed long long, and given size_t can be unsigned long long, we could overflow it. With best regards Laslo

Re: [hackers] [quark] Prevent overflow in strtonum()-parameters || Laslo Hunhold

2020-11-01 Thread Quentin Rameau
> Make sure not to overflow the long long value. Given the standard > doesn't bring any tangible guarantees for the upper limits of size_t, SIZE_MAX is the tangible guarantee for the upper limit of size_t.