public inbox for git@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix  git-p4 decode() missing an assignment
@ 2024-03-04  8:54 W Sero via GitGitGadget
  2024-03-04  9:36 ` Patrick Steinhardt
  0 siblings, 1 reply; 2+ messages in thread
From: W Sero via GitGitGadget @ 2024-03-04  8:54 UTC (permalink / raw)
  To: git; +Cc: W Sero, SaNeOr

From: SaNeOr <sane0r@outlook.com>

bugfix: When using git-p4 in the python2 environment,
some places decode() missing an assignment.

Signed-off-by: W Sero <sane0r@outlook.com>
---
    Fix git-p4 decode_path() missing an assignment
    
    When using git-p4 in the python2 environment, some places decode( )
    missing an assignment.

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-1683%2FSaNeOr%2Fmaster-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-1683/SaNeOr/master-v1
Pull-Request: https://github.com/git/git/pull/1683

 git-p4.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/git-p4.py b/git-p4.py
index 28ab12c72b6..9fa4b9b104e 100755
--- a/git-p4.py
+++ b/git-p4.py
@@ -307,7 +307,7 @@ def decode_path(path):
         return path.decode(encoding, errors='replace') if isinstance(path, bytes) else path
     else:
         try:
-            path.decode('ascii')
+            path = path.decode('ascii')
         except:
             path = path.decode(encoding, errors='replace')
             if verbose:
@@ -3114,7 +3114,7 @@ def writeToGitStream(self, gitMode, relPath, contents):
 
     def encodeWithUTF8(self, path):
         try:
-            path.decode('ascii')
+            path = path.decode('ascii')
         except:
             encoding = 'utf8'
             if gitConfig('git-p4.pathEncoding'):

base-commit: 0f9d4d28b7e6021b7e6db192b7bf47bd3a0d0d1d
-- 
gitgitgadget

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Fix  git-p4 decode() missing an assignment
  2024-03-04  8:54 [PATCH] Fix git-p4 decode() missing an assignment W Sero via GitGitGadget
@ 2024-03-04  9:36 ` Patrick Steinhardt
  0 siblings, 0 replies; 2+ messages in thread
From: Patrick Steinhardt @ 2024-03-04  9:36 UTC (permalink / raw)
  To: W Sero via GitGitGadget; +Cc: git, W Sero

[-- Attachment #1: Type: text/plain, Size: 2306 bytes --]

On Mon, Mar 04, 2024 at 08:54:15AM +0000, W Sero via GitGitGadget wrote:
> From: SaNeOr <sane0r@outlook.com>
> 
> bugfix: When using git-p4 in the python2 environment,
> some places decode() missing an assignment.
> 
> Signed-off-by: W Sero <sane0r@outlook.com>
> ---
>     Fix git-p4 decode_path() missing an assignment
>     
>     When using git-p4 in the python2 environment, some places decode( )
>     missing an assignment.
> 
> Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-1683%2FSaNeOr%2Fmaster-v1
> Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-1683/SaNeOr/master-v1
> Pull-Request: https://github.com/git/git/pull/1683
> 
>  git-p4.py | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/git-p4.py b/git-p4.py
> index 28ab12c72b6..9fa4b9b104e 100755
> --- a/git-p4.py
> +++ b/git-p4.py
> @@ -307,7 +307,7 @@ def decode_path(path):
>          return path.decode(encoding, errors='replace') if isinstance(path, bytes) else path
>      else:
>          try:
> -            path.decode('ascii')
> +            path = path.decode('ascii')

Is this fixing an actual bug that you have encountered? I'm mostly
asking because I think this actually works as inteded: we only try to
decode the path using the specified encoding in case where it is not
representable as ASCII. If it contained e.g. Unicode characters, then
this statement here would throw and we end up decoding in the `except`
branch. Otherwise, we know that the path only contains ASCII characters
and thus we don't have to change it in the first place.

Whether that complexity is sensible might be a different question. But
it at least shouldn't result in any user visible bug, no?

Patrick

>          except:
>              path = path.decode(encoding, errors='replace')
>              if verbose:
> @@ -3114,7 +3114,7 @@ def writeToGitStream(self, gitMode, relPath, contents):
>  
>      def encodeWithUTF8(self, path):
>          try:
> -            path.decode('ascii')
> +            path = path.decode('ascii')
>          except:
>              encoding = 'utf8'
>              if gitConfig('git-p4.pathEncoding'):
> 
> base-commit: 0f9d4d28b7e6021b7e6db192b7bf47bd3a0d0d1d
> -- 
> gitgitgadget
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-03-04  9:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-04  8:54 [PATCH] Fix git-p4 decode() missing an assignment W Sero via GitGitGadget
2024-03-04  9:36 ` Patrick Steinhardt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox