This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gokdrive. from f17a4bb x2gokdrive*.{c|h}: Several typo fixes in comments / debug messages. new 1b8ad24 x2gokdriveremove.c: Regression fix for f5cbefa0 (and also for incomplete 889a3f2b). Fix incomplete renaming of index variable in for loop. new 875c7d3 x2gokdriveremote.c: Possibly a regression fix for f5cbefa0. Clarify variable usage by renaming inner variables width and height. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: x2gokdriveremote.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdrive. commit 1b8ad24bb1565e0edef52bddb9c08cf1c3544a78 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Jul 21 17:45:18 2019 +0200 x2gokdriveremove.c: Regression fix for f5cbefa0 (and also for incomplete 889a3f2b). Fix incomplete renaming of index variable in for loop. --- x2gokdriveremote.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x2gokdriveremote.c b/x2gokdriveremote.c index 3dcfe29..d2e7833 100644 --- a/x2gokdriveremote.c +++ b/x2gokdriveremote.c @@ -1989,7 +1989,7 @@ clientReadNotify(int fd, int ready, void *data) memset(screens,0, sizeof(struct VirtScreen)*4); for(int j=0;j<4;++j) { - char* record=buff+9+i*8; + char* record=buff+9+j*8; screens[j].width=*((uint16_t*)record); screens[j].height=*((uint16_t*)record+1); screens[j].x=*((int16_t*)record+2); @@ -1999,7 +1999,7 @@ clientReadNotify(int fd, int ready, void *data) { break; } - EPHYR_DBG("SCREEN %d - (%dx%d) - %d,%d", i, screens[j].width, screens[j].height, screens[j].x, screens[j].y); + EPHYR_DBG("SCREEN %d - (%dx%d) - %d,%d", j, screens[j].width, screens[j].height, screens[j].x, screens[j].y); } ephyrResizeScreen (remoteVars.ephyrScreen->pScreen,width,height, screens); break; -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdrive. commit 875c7d32acb9ff2414d5029afecb20bf87572fca Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Jul 21 17:46:27 2019 +0200 x2gokdriveremote.c: Possibly a regression fix for f5cbefa0. Clarify variable usage by renaming inner variables width and height. --- x2gokdriveremote.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/x2gokdriveremote.c b/x2gokdriveremote.c index d2e7833..4b9cbff 100644 --- a/x2gokdriveremote.c +++ b/x2gokdriveremote.c @@ -1537,7 +1537,6 @@ void *send_frame_thread (void *threadid) struct sendqueue_element* current = NULL; uint32_t x, y = 0; int32_t width, height = 0; - uint32_t crc = 0; if(remoteVars.maxfr<elems) { @@ -1564,13 +1563,13 @@ void *send_frame_thread (void *threadid) if(frame) { - crc = frame->crc; - width=frame->width; - height=frame->height; + uint32_t crc = frame->crc; + uint32_t frame_width=frame->width; + uint32_t frame_height=frame->height; /* unlock sendqueue for main thread */ pthread_mutex_unlock(&remoteVars.sendqueue_mutex); - send_frame(width, height, x, y, crc, frame->regions); + send_frame(frame_width, frame_height, x, y, crc, frame->regions); } else { -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git