Bugzilla – Attachment 3060 Details for
Bug 2783
Patch for disabling progress meter after file has finished uploading
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch that fixes issue
progressmeter.c.patch (text/plain), 418 bytes, created by
gyroninja
on 2017-09-25 09:39:59 AEST
(
hide
)
Description:
patch that fixes issue
Filename:
MIME Type:
Creator:
gyroninja
Created:
2017-09-25 09:39:59 AEST
Size:
418 bytes
patch
obsolete
>--- tmp/progressmeter.c.orig 2017-09-24 02:26:49.287483749 -0700 >+++ progressmeter.c 2017-09-24 02:03:48.050511186 -0700 >@@ -241,9 +241,11 @@ > if (can_output()) > refresh_progress_meter(); > >- signal(SIGALRM, update_progress_meter); >- alarm(UPDATE_INTERVAL); >- errno = save_errno; >+ if (cur_pos < end_pos) { >+ signal(SIGALRM, update_progress_meter); >+ alarm(UPDATE_INTERVAL); >+ errno = save_errno; >+ } > } > > void
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 2783
:
3058
|
3059
| 3060